コード例 #1
0
ファイル: ClientRepository.cs プロジェクト: buyonlinemahi/MMC
 public int updateClientInsurer(ClientInsurer _clientInsurer)
 {
     return(_clientInsurerRepo.Update(_clientInsurer));
 }
コード例 #2
0
ファイル: ClientController.cs プロジェクト: buyonlinemahi/MMC
 public JsonResult AddClientInsurer(ClientInsurer _ClientInsurer)
 {
     _ClientInsurer.ClientInsurerID = _iClientService.addClientInsurer(Mapper.Map <MMC.MMCService.ClientService.ClientInsurer>(_ClientInsurer));
     return(Json(_ClientInsurer, GlobalConst.ContentTypes.TextHtml));
 }
コード例 #3
0
ファイル: ClientRepository.cs プロジェクト: buyonlinemahi/MMC
 public int addClientInsurer(ClientInsurer _clientInsurer)
 {
     return(_clientInsurerRepo.Add(_clientInsurer).ClientInsurerID);
 }