init
This commit is contained in:
@@ -0,0 +1,24 @@
|
||||
using System.Collections.Generic;
|
||||
using Kreta.Ellenorzo.BL.VN.Ellenorzo;
|
||||
using Kreta.Ellenorzo.Domain.VN.Common;
|
||||
using Kreta.Web.Logging.Abstractions;
|
||||
|
||||
namespace Kreta.Ellenorzo.BL.VN.Dummy
|
||||
{
|
||||
public class DummyFacade : EllenorzoFacade
|
||||
{
|
||||
public DummyFacade(MobileUser mobileUser) : base(mobileUser)
|
||||
{
|
||||
}
|
||||
|
||||
public List<object> ListDummy(ITraceLogger logger)
|
||||
{
|
||||
logger.Info("teszt");
|
||||
|
||||
return new List<object>
|
||||
{
|
||||
new { Teszt = "hi" }
|
||||
};
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user