public Task <IEnumerable <PositionDisplayItem> > GetPositionenOfSpezialkonto(int bgSpezkontoId, BgSpezkontoTyp typ)
        {
            var query = new PositionenQuery {
                BgSpezkontoId = bgSpezkontoId, Typ = typ
            };

            return(_mediator.Process(query));
        }
        public Task <IEnumerable <KostenartDisplayItem> > GetKostenartenOfLeistung(int faLeistungId, BgSpezkontoTyp typ)
        {
            var query = new KostenartenQuery {
                FaLeistungId = faLeistungId, Typ = typ
            };

            return(_mediator.Process(query));
        }
Beispiel #3
0
        public Task <IEnumerable <SpezialkontoDisplayItem> > GetSpezialkontenOfLeistung(int faLeistungId, BgSpezkontoTyp typ, bool nurAktive)
        {
            var query = new SpezialkontenQuery {
                FaLeistungId = faLeistungId, Typ = typ, NurAktive = nurAktive
            };

            return(_mediator.Process(query));
        }