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