Example #1
0
 public ModelsController(
     IAssetModelViewModelService assetModelViewModelService,
     IManufacturerViewModelService manufacturerViewModelService,
     ICategoryViewModelService categoryViewModelService,
     IDepreciationViewModelService depreciationViewModelService
     )
 {
     this._assetModelViewModelService   = assetModelViewModelService;
     this._manufacturerViewModelService = manufacturerViewModelService;
     this._categoryViewModelService     = categoryViewModelService;
     this._depreciationViewModelService = depreciationViewModelService;
 }
Example #2
0
 public ManufacturerController(
     IManufacturerViewModelService manufacturerViewModelService,
     IManufacturerService manufacturerService,
     ICustomerService customerService,
     IStoreService storeService,
     ILanguageService languageService,
     ILocalizationService localizationService,
     IExportManager exportManager,
     IImportManager importManager)
 {
     this._manufacturerViewModelService = manufacturerViewModelService;
     this._manufacturerService          = manufacturerService;
     this._customerService     = customerService;
     this._storeService        = storeService;
     this._languageService     = languageService;
     this._localizationService = localizationService;
     this._exportManager       = exportManager;
     this._importManager       = importManager;
 }
 public ManufacturerController(
     IManufacturerViewModelService manufacturerViewModelService,
     IManufacturerService manufacturerService,
     IWorkContext workContext,
     ICustomerService customerService,
     IStoreService storeService,
     ILanguageService languageService,
     ILocalizationService localizationService,
     IExportManager exportManager,
     IImportManager importManager)
 {
     _manufacturerViewModelService = manufacturerViewModelService;
     _manufacturerService          = manufacturerService;
     _workContext         = workContext;
     _customerService     = customerService;
     _storeService        = storeService;
     _languageService     = languageService;
     _localizationService = localizationService;
     _exportManager       = exportManager;
     _importManager       = importManager;
 }
 public ManufacturersController(IManufacturerViewModelService manufacturerViewModelService)
 {
     this._manufacturerViewModelService = manufacturerViewModelService;
 }