public IHttpActionResult Insert(Order obj) { return(Ok(_repo.Insert(obj))); }
public int Insert(Order obj) { return(_repo.Insert(obj)); }