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) }); } }