예제 #1
0
 public bool Put(int id, [FromBody] HospitalMasterEntity hspMasterEntity)
 {
     if (id > 0)
     {
         return(_hspMasterServices.UpdateUser(id, hspMasterEntity));
     }
     return(false);
 }
예제 #2
0
 public int Post([FromBody] HospitalMasterEntity hspMasterEntity)
 {
     return(_hspMasterServices.CreateUser(hspMasterEntity));
 }