Esempio n. 1
0
 public ActionResult <String> Delete(int id)
 {
     try
     {
         return(Ok(_ps.Delete(id)));
     }
     catch (Exception e)
     {
         return(BadRequest(e.Message));
     }
 }