예제 #1
0
 public IHttpActionResult DeleteById(int OrderId)
 {
     return(Ok(_repo.DeleteById(OrderId)));
 }
예제 #2
0
 public int DeleteById(int OrderId)
 {
     return(_repo.DeleteById(OrderId));
 }