Esempio n. 1
0
 public IHttpActionResult DeleteById(int OrderId)
 {
     return(Ok(_repo.DeleteById(OrderId)));
 }
Esempio n. 2
0
 public int DeleteById(int OrderId)
 {
     return(_repo.DeleteById(OrderId));
 }