kreta/Kreta.WebApi/Naplo/Kreta.Naplo.BusinessLogic/V3/Dummy/DummySubqueries.cs
2024-03-13 00:33:46 +01:00

18 lines
421 B
C#

using System.Collections.Generic;
using Kreta.Web.Logging.Abstractions;
namespace Kreta.Naplo.BusinessLogic.V3.Dummy
{
internal static class DummySubqueries
{
internal static List<object> TraceLoggerDummy(ITraceLogger traceLogger)
{
traceLogger.Info("teszt");
return new List<object>
{
new { Teszt = "hi" }
};
}
}
}