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