Esempio n. 1
0
        public IActionResult Omzet([FromBody] DatumFilter filter)
        {
            var res = OmzetLogic.CreateQuery(filter, this._context.Bestellingen, this._context.Producten);

            return(Ok(res));
        }
Esempio n. 2
0
        public IActionResult Bestellingen([FromBody] DatumFilter filter)
        {
            var res = BestellingenLogic.CreateQuery(filter, this._context.Bestellingen);

            return(Ok(res));
        }
Esempio n. 3
0
        public IActionResult KlantRegistratie([FromBody] DatumFilter filter)
        {
            var res = KlantRegistratieLogic.CreateQuery(filter, this._context.Klanten);

            return(Ok(res));
        }