Exemplo n.º 1
0
 public async Task <IActionResult> List(
     [FromBody] QueryOptionsModel options) =>
 Ok(await _service.QueryAsync(options));
Exemplo n.º 2
0
 public async Task <IActionResult> Employees(
     int id, [FromBody] QueryOptionsModel options) =>
 Ok(await _service.QueryEmployeesAsync(id, options));