コード例 #1
0
 public CounterpartiesController(ICounterpartyService counterpartyService,
                                 IAgentContextService agentContextService,
                                 IContractFileService contractFileService)
 {
     _counterpartyService = counterpartyService;
     _agentContextService = agentContextService;
     _contractFileService = contractFileService;
 }
コード例 #2
0
 public AgenciesController(IChildAgencyService childAgencyService,
                           IAgentContextService agentContextService,
                           IAgentInvitationCreateService agentInvitationCreateService,
                           IAgencyManagementService agencyManagementService,
                           IAgentInvitationAcceptService agentInvitationAcceptService,
                           ITokenInfoAccessor tokenInfoAccessor,
                           IAgencyService agencyService,
                           IIdentityUserInfoService identityUserInfoService,
                           IAgentRolesService agentRolesService,
                           IContractFileService contractFileService)
 {
     _childAgencyService           = childAgencyService;
     _agentContextService          = agentContextService;
     _agentInvitationCreateService = agentInvitationCreateService;
     _agencyManagementService      = agencyManagementService;
     _agentInvitationAcceptService = agentInvitationAcceptService;
     _tokenInfoAccessor            = tokenInfoAccessor;
     _agencyService           = agencyService;
     _identityUserInfoService = identityUserInfoService;
     _agentRolesService       = agentRolesService;
     _contractFileService     = contractFileService;
 }