public StoreController(
     IStoreViewModelService storeViewModelService,
     IStoreService storeService,
     ILanguageService languageService,
     ILocalizationService localizationService)
 {
     _storeViewModelService = storeViewModelService;
     _storeService          = storeService;
     _languageService       = languageService;
     _localizationService   = localizationService;
 }
Example #2
0
 public StoreController(
     IStoreViewModelService storeViewModelService,
     IStoreService storeService,
     ILanguageService languageService,
     ITranslationService translationService)
 {
     _storeViewModelService = storeViewModelService;
     _storeService          = storeService;
     _languageService       = languageService;
     _translationService    = translationService;
 }
Example #3
0
 public IndexModel(IStoreViewModelService storeViewModelService)
 {
     _storeViewModelService = storeViewModelService;
 }