public CurrencyController(ICurrencyService currencyService,
                           ICurrencyViewModelService currencyViewModelService,
                           CurrencySettings currencySettings, ISettingService settingService,
                           IDateTimeHelper dateTimeHelper, ILocalizationService localizationService,
                           ILanguageService languageService,
                           IStoreService storeService)
 {
     this._currencyService          = currencyService;
     this._currencyViewModelService = currencyViewModelService;
     this._currencySettings         = currencySettings;
     this._settingService           = settingService;
     this._dateTimeHelper           = dateTimeHelper;
     this._localizationService      = localizationService;
     this._languageService          = languageService;
     this._storeService             = storeService;
 }
 public CurrencyController(ICurrencyService currencyService,
                           ICurrencyViewModelService currencyViewModelService,
                           CurrencySettings currencySettings, ISettingService settingService,
                           IDateTimeHelper dateTimeHelper, ILocalizationService localizationService,
                           ILanguageService languageService,
                           IStoreService storeService,
                           ICacheBase cacheBase)
 {
     _currencyService          = currencyService;
     _currencyViewModelService = currencyViewModelService;
     _currencySettings         = currencySettings;
     _settingService           = settingService;
     _dateTimeHelper           = dateTimeHelper;
     _localizationService      = localizationService;
     _languageService          = languageService;
     _storeService             = storeService;
     _cacheBase = cacheBase;
 }
Beispiel #3
0
 public CurrencyController(ICurrencyService currencyService,
                           IExchangeRateService exchangeRateService,
                           ICurrencyViewModelService currencyViewModelService,
                           CurrencySettings currencySettings, ISettingService settingService,
                           IDateTimeService dateTimeService, ITranslationService translationService,
                           ILanguageService languageService,
                           IStoreService storeService,
                           ICacheBase cacheBase)
 {
     _currencyService          = currencyService;
     _exchangeRateService      = exchangeRateService;
     _currencyViewModelService = currencyViewModelService;
     _currencySettings         = currencySettings;
     _settingService           = settingService;
     _dateTimeService          = dateTimeService;
     _translationService       = translationService;
     _languageService          = languageService;
     _storeService             = storeService;
     _cacheBase = cacheBase;
 }
 public CurrencyController(ICurrencyViewModelService currencyViewModelService) =>
Beispiel #5
0
 public CurrencyController(ICurrencyViewModelService currencyViewModelSerivce, IMediator mediator)
 {
     _currencyViewModelSerivce = currencyViewModelSerivce;
     Mediator = mediator;
 }