Ejemplo n.º 1
0
 public IActionResult GetAlarmTypes()
 {
     if (repo.GetAllAlarmTypes().Any())
     {
         return(Ok(repo.GetAllAlarmTypes()));
     }
     else
     {
         return(NotFound());
     }
 }