예제 #1
0
 public int updateClientEmployer(ClientEmployer _clientEmployer)
 {
     return(_clientEmployerRepo.Update(_clientEmployer));
 }
예제 #2
0
        public JsonResult AddClientEmployer(ClientEmployer _ClientEmployer)
        {
            int addClientInsurerID = _iClientService.addClientEmployer(Mapper.Map <MMC.MMCService.ClientService.ClientEmployer>(_ClientEmployer));

            return(Json(GlobalConst.Message.SaveMessage, GlobalConst.ContentTypes.TextHtml));
        }
예제 #3
0
 public int addClientEmployer(ClientEmployer _clientEmployer)
 {
     return(_clientEmployerRepo.Add(_clientEmployer).ClientEmployerID);
 }