Exemple #1
0
 public Handler(IProviderSettingTenantRepository repository,
                IProviderRepository ProviderRepository,
                IUserIdentityService userIdentityService)
 {
     this._repository          = repository;
     this._providerRepository  = ProviderRepository;
     this._userIdentityService = userIdentityService;
 }
 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;
 }