kreta/Kreta.WebApi/Ellenorzo/Kreta.Ellenorzo.BL/VN/Intezmeny/IntezmenyFacade.cs
2024-03-13 00:33:46 +01:00

23 lines
924 B
C#

using Kreta.Ellenorzo.BL.VN.Ellenorzo;
using Kreta.Ellenorzo.BL.VN.Intezmeny.Rendszermodul;
using Kreta.Ellenorzo.BL.VN.Intezmeny.TestreszabasBeallitasok;
using Kreta.Ellenorzo.Domain.VN.Common;
using Kreta.Ellenorzo.Domain.VN.Intezmeny;
namespace Kreta.Ellenorzo.BL.VN.Intezmeny
{
public class IntezmenyFacade : EllenorzoFacade
{
public IntezmenyFacade(MobileUser mobileUser) : base(mobileUser)
{
}
public IntezmenyResponse GetIntezmeny() => RunSubquery(() =>
new IntezmenyResponse
{
IntezmenyAdatok = IntezmenySubqueries.GetSajatIntezmenyAdatok(DefaultConnectionParameters),
Rendszermodulok = RendszermodulSubqueries.ListRendszermodul(DefaultConnectionParameters),
TestreszabasBeallitasok = TestreszabasBeallitasokSubqueries.GetTestreszabasBeallitasok(DefaultConnectionParameters)
});
}
}