Esempio n. 1
0
 public async Task <IActionResult> GetByIdAsync(int id)
 {
     return(Ok(_mapper.Map <AnuncioDto>(await _service.GetByIdAsync(id))));
 }