Example #1
0
 public async Task <IActionResult> GetById([FromRoute] Guid id)
 {
     return(new OkObjectResult(_mapper.Map <TaxResponse>(await _taxesService.GetById(id))));
 }