public PaymentStripeController(
            ISettingDictionaryService settingDictionaryService,
            IUnitOfWorkAsync unitOfWorkAsync,
            DataCacheService dataCacheService,
            IOrderService orderService,
            IStripeTransactionService transationService,
            IStripeConnectService stripConnectService,
            [Dependency("unitOfWorkStripe")] IUnitOfWorkAsync unitOfWorkAsyncStripe)
        {
            _settingDictionaryService = settingDictionaryService;
            _unitOfWorkAsync = unitOfWorkAsync;
            _dataCacheService = dataCacheService;

            _orderService = orderService;

            _transactionService = transationService;
            _stripConnectService = stripConnectService;
            _unitOfWorkAsyncStripe = unitOfWorkAsyncStripe;
        }
Esempio n. 2
0
        public PaymentStripeController(
            ISettingDictionaryService settingDictionaryService,
            IUnitOfWorkAsync unitOfWorkAsync,
            DataCacheService dataCacheService,
            IOrderService orderService,
            IStripeTransactionService transationService,
            IStripeConnectService stripConnectService,
            [Dependency("unitOfWorkStripe")] IUnitOfWorkAsync unitOfWorkAsyncStripe)
        {
            _settingDictionaryService = settingDictionaryService;
            _unitOfWorkAsync          = unitOfWorkAsync;
            _dataCacheService         = dataCacheService;

            _orderService = orderService;

            _transactionService    = transationService;
            _stripConnectService   = stripConnectService;
            _unitOfWorkAsyncStripe = unitOfWorkAsyncStripe;
        }