Exemplo n.º 1
0
 public int updateClientEmployer(ClientEmployer _clientEmployer)
 {
     return(_clientEmployerRepo.Update(_clientEmployer));
 }
Exemplo n.º 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));
        }
Exemplo n.º 3
0
 public int addClientEmployer(ClientEmployer _clientEmployer)
 {
     return(_clientEmployerRepo.Add(_clientEmployer).ClientEmployerID);
 }