Exemplo n.º 1
0
 public async Task <IActionResult> GetById([FromRoute] int id)
 {
     return(Ok(_mapper.Map <SelectionListModel>(await _selectionService.FindByIdAsync(id))));
 }