public int updateClientEmployer(ClientEmployer _clientEmployer) { return(_clientEmployerRepo.Update(_clientEmployer)); }
public JsonResult AddClientEmployer(ClientEmployer _ClientEmployer) { int addClientInsurerID = _iClientService.addClientEmployer(Mapper.Map <MMC.MMCService.ClientService.ClientEmployer>(_ClientEmployer)); return(Json(GlobalConst.Message.SaveMessage, GlobalConst.ContentTypes.TextHtml)); }
public int addClientEmployer(ClientEmployer _clientEmployer) { return(_clientEmployerRepo.Add(_clientEmployer).ClientEmployerID); }