Exemple #1
0
 public IHttpActionResult DeleteStd(int id)
 {
     try
     {
         var Deletedstd = stdbl.Deletestd(id);
         return(Ok(Deletedstd));
     }
     catch
     {
         return(BadRequest("ID Is Not Found"));
     }
 }