Ejemplo n.º 1
0
 public async Task <ActionResult <IList <LogDTO> > > GetByUser(int id)
 {
     try
     {
         return(Ok(await service.GetByUser(id)));
     }
     catch (Exception)
     {
         return(NotFound($"User with ID {id} not found!"));
     }
 }