public IActionResult Omzet([FromBody] DatumFilter filter) { var res = OmzetLogic.CreateQuery(filter, this._context.Bestellingen, this._context.Producten); return(Ok(res)); }
public IActionResult Bestellingen([FromBody] DatumFilter filter) { var res = BestellingenLogic.CreateQuery(filter, this._context.Bestellingen); return(Ok(res)); }
public IActionResult KlantRegistratie([FromBody] DatumFilter filter) { var res = KlantRegistratieLogic.CreateQuery(filter, this._context.Klanten); return(Ok(res)); }