Esempio n. 1
0
 public ComponentsController(
     IAsyncRepository <Components> componentRepository,
     ICategoryViewModelService categoryViewModelService,
     ILocationViewModelService locationViewModelService
     )
 {
     this._componentRepository      = componentRepository;
     this._categoryViewModelService = categoryViewModelService;
     this._locationViewModelService = locationViewModelService;
 }
Esempio n. 2
0
 public ModelsController(
     IAssetModelViewModelService assetModelViewModelService,
     IManufacturerViewModelService manufacturerViewModelService,
     ICategoryViewModelService categoryViewModelService,
     IDepreciationViewModelService depreciationViewModelService
     )
 {
     this._assetModelViewModelService   = assetModelViewModelService;
     this._manufacturerViewModelService = manufacturerViewModelService;
     this._categoryViewModelService     = categoryViewModelService;
     this._depreciationViewModelService = depreciationViewModelService;
 }
 public CategoryController(
     ICategoryService categoryService,
     ICategoryViewModelService categoryViewModelService,
     ICustomerService customerService,
     ILanguageService languageService,
     ILocalizationService localizationService,
     IStoreService storeService,
     IExportManager exportManager,
     IWorkContext workContext,
     IImportManager importManager)
 {
     this._categoryService          = categoryService;
     this._categoryViewModelService = categoryViewModelService;
     this._customerService          = customerService;
     this._languageService          = languageService;
     this._localizationService      = localizationService;
     this._storeService             = storeService;
     this._exportManager            = exportManager;
     this._workContext   = workContext;
     this._importManager = importManager;
 }
Esempio n. 4
0
 public CategoryController(
     ICategoryService categoryService,
     ICategoryViewModelService categoryViewModelService,
     ICustomerService customerService,
     ILanguageService languageService,
     ITranslationService translationService,
     IStoreService storeService,
     IExportManager exportManager,
     IWorkContext workContext,
     IGroupService groupService,
     IImportManager importManager)
 {
     _categoryService          = categoryService;
     _categoryViewModelService = categoryViewModelService;
     _customerService          = customerService;
     _languageService          = languageService;
     _translationService       = translationService;
     _storeService             = storeService;
     _exportManager            = exportManager;
     _workContext   = workContext;
     _groupService  = groupService;
     _importManager = importManager;
 }
Esempio n. 5
0
 public HomeController(ILogger <HomeController> logger, ICategoryViewModelService categoryService, IApplicationService appService)
 {
     _logger          = logger;
     _categoryService = categoryService;
     _appService      = appService;
 }
 public CategoryController(ICategoryViewModelService categoryService)
 {
     _categoryService = categoryService;
 }
Esempio n. 7
0
 public PropertyController(ILogger <PropertyController> logger, ICategoryViewModelService categoryService, IApplicationService appService)
 {
     _logger          = logger;
     _categoryService = categoryService;
 }
Esempio n. 8
0
 public CategoriesController(ICategoryViewModelService categoryViewModelService)
 {
     this._categoryViewModelService = categoryViewModelService;
 }