public async Task <IActionResult> Get([FromRoute] int id) { var result = await _service.Get(id); return(result != null ? (IActionResult)Ok(result) : NoContent()); }
public async Task <IActionResult> Get() { var result = await _service.Get(); return(Ok(result)); }