Ejemplo n.º 1
0
 public IActionResult GetByUserId(int id)
 {
     if (repo.GetAlarmsByUserId(id).Any())
     {
         return(Ok(repo.GetAlarmsByUserId(id)));
     }
     else
     {
         return(NotFound());
     }
 }