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