public int Insert(Users obj)
 {
     return(_repo.Insert(obj));
 }
Beispiel #2
0
 public IHttpActionResult Insert(Users obj)
 {
     return(Ok(_repo.Insert(obj)));
 }