예제 #1
0
 public Handler(IProviderTenantRepository repository,
                IProviderRepository providerRepository,
                IUserIdentityService userIdentityService)
 {
     this._repository          = repository;
     this._providerRepository  = providerRepository;
     this._userIdentityService = userIdentityService;
 }
예제 #2
0
 public Handler(IProviderRepository repository,
                IUserIdentityService userIdentityService,
                IMapper mapper,
                IProviderTenantRepository providerTenantRepository)
 {
     this._repository          = repository;
     this._userIdentityService = userIdentityService;
     this._mapper = mapper;
     this._providerTenantRepository = providerTenantRepository;
 }
 public Handler(ITransactionRepository repository,
                IProviderTenantRepository providerTenantRepository,
                IProviderSettingTenantRepository providerSettingTenantRepository,
                Func <string, ICancelService> cancelService,
                IUserIdentityService userIdentityService)
 {
     this._repository = repository;
     this._providerSettingTenantRepository = providerSettingTenantRepository;
     this._providerTenantRepository        = providerTenantRepository;
     this._userIdentityService             = userIdentityService;
     this._cancelService = cancelService;
 }
 public Handler(ITransactionRepository repository,
                IProviderTenantRepository providerTenantRepository,
                IProviderRepository providerRepository,
                IProviderSettingTenantRepository providerSettingTenantRepository,
                Func <string, IAuthorizeService> authorizeService,
                IUserIdentityService userIdentityService)
 {
     this._repository = repository;
     this._providerSettingTenantRepository = providerSettingTenantRepository;
     this._providerTenantRepository        = providerTenantRepository;
     this._userIdentityService             = userIdentityService;
     this._authorizeService   = authorizeService;
     this._providerRepository = providerRepository;
 }