Beispiel #1
0
 public IActionResult DeleteSector(int Id)
 {
     try
     {
         return(Ok(fp.DeleteSector(Id)));
     }
     catch (Exception ex)
     {
         Exceptions(ex);
         return(StatusCode(500));
     }
 }