Пример #1
0
 public CountryController(ICountryService countryService,
                          ICountryViewModelService countryViewModelService,
                          ITranslationService translationService,
                          ILanguageService languageService,
                          IStoreService storeService,
                          IExportManager exportManager,
                          IImportManager importManager)
 {
     _countryService          = countryService;
     _countryViewModelService = countryViewModelService;
     _translationService      = translationService;
     _languageService         = languageService;
     _storeService            = storeService;
     _exportManager           = exportManager;
     _importManager           = importManager;
 }
Пример #2
0
 public CountryController(ICountryService countryService,
                          ICountryViewModelService countryViewModelService,
                          IStateProvinceService stateProvinceService,
                          ILocalizationService localizationService,
                          IAddressService addressService,
                          ILanguageService languageService,
                          IStoreService storeService,
                          IExportManager exportManager,
                          IImportManager importManager)
 {
     _countryService          = countryService;
     _countryViewModelService = countryViewModelService;
     _stateProvinceService    = stateProvinceService;
     _localizationService     = localizationService;
     _addressService          = addressService;
     _languageService         = languageService;
     _storeService            = storeService;
     _exportManager           = exportManager;
     _importManager           = importManager;
 }
Пример #3
0
 public CountryController(ICountryViewModelService countryViewModelService, ILocalizationService localizationService)
 {
     this._countryViewModelService = countryViewModelService;
     this._localizationService     = localizationService;
 }