コード例 #1
0
 public AgenciesController(IAgencySystemSettingsManagementService systemSettingsManagementService,
                           IAgentService agentService,
                           IAdminAgencyManagementService agencyManagementService,
                           IAgencyVerificationService agencyVerificationService,
                           IContractFileManagementService contractFileManagementService,
                           ILocalityInfoService localityInfoService,
                           IAgencyRemovalService agencyRemovalService)
 {
     _systemSettingsManagementService = systemSettingsManagementService;
     _agentService                  = agentService;
     _agencyManagementService       = agencyManagementService;
     _agencyVerificationService     = agencyVerificationService;
     _contractFileManagementService = contractFileManagementService;
     _localityInfoService           = localityInfoService;
     _agencyRemovalService          = agencyRemovalService;
 }
コード例 #2
0
 public ContractFileService(IContractFileManagementService contractFileManagementService,
                            EdoContext edoContext)
 {
     _contractFileManagementService = contractFileManagementService;
     _edoContext = edoContext;
 }
コード例 #3
0
 public CounterpartiesController(ICounterpartyManagementService counterpartyManagementService,
                                 IContractFileManagementService contractFileManagementService)
 {
     _counterpartyManagementService = counterpartyManagementService;
     _contractFileManagementService = contractFileManagementService;
 }