public IHttpActionResult DeleteById(int OrderId) { return(Ok(_repo.DeleteById(OrderId))); }
public int DeleteById(int OrderId) { return(_repo.DeleteById(OrderId)); }