示例#1
0
 public AdminsService(
     IAdminManagementServiceClient adminManagementServiceClient,
     ICredentialsGeneratorService credentialsGeneratorService,
     IMapper mapper)
 {
     _adminManagementServiceClient = adminManagementServiceClient;
     _mapper = mapper;
     _credentialsGeneratorService = credentialsGeneratorService;
 }
 public AdminsController(
     IAdminsService adminsService,
     ICredentialsGeneratorService credentialsGeneratorService,
     IMapper mapper,
     IAdminManagementServiceClient adminManagementServiceClient)
 {
     _adminsService = adminsService;
     _mapper        = mapper;
     _adminManagementServiceClient = adminManagementServiceClient;
     _credentialsGeneratorService  = credentialsGeneratorService;
 }
 public CredentialsController(
     ICustomerCredentialsService customerCredentialsService,
     ICredentialsGeneratorService credentialsGeneratorService,
     IPasswordResetService passwordResetService,
     IMapper mapper,
     ILogFactory logFactory)
 {
     _customerCredentialsService  = customerCredentialsService;
     _credentialsGeneratorService = credentialsGeneratorService;
     _passwordResetService        = passwordResetService;
     _mapper = mapper;
     _log    = logFactory.CreateLog(this);
 }
 public AdminsController(
     IAdminsService adminsService,
     ICredentialsGeneratorService credentialsGeneratorService,
     IExtRequestContext requestContext,
     IMapper mapper,
     IAdminManagementServiceClient adminManagementServiceClient,
     IAuditLogPublisher auditLogPublisher)
 {
     _adminsService = adminsService;
     _mapper        = mapper;
     _adminManagementServiceClient = adminManagementServiceClient;
     _auditLogPublisher            = auditLogPublisher;
     _credentialsGeneratorService  = credentialsGeneratorService;
     _requestContext = requestContext;
 }