예제 #1
0
 public AgencyRemovalService(EdoContext context,
                             IManagementAuditService managementAuditService,
                             IBookingService bookingService,
                             IAgencySystemSettingsManagementService agencySystemSettingsManagementService,
                             IAgentRemovalService agentRemovalService)
 {
     _context = context;
     _managementAuditService = managementAuditService;
     _bookingService         = bookingService;
     _agencySystemSettingsManagementService = agencySystemSettingsManagementService;
     _agentRemovalService = agentRemovalService;
 }
예제 #2
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;
 }
예제 #3
0
 public AgenciesController(IAgencySystemSettingsManagementService systemSettingsManagementService)
 {
     _systemSettingsManagementService = systemSettingsManagementService;
 }