public ComponentsController( IAsyncRepository <Components> componentRepository, ICategoryViewModelService categoryViewModelService, ILocationViewModelService locationViewModelService ) { this._componentRepository = componentRepository; this._categoryViewModelService = categoryViewModelService; this._locationViewModelService = locationViewModelService; }
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; }
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; }
public HomeController(ILogger <HomeController> logger, ICategoryViewModelService categoryService, IApplicationService appService) { _logger = logger; _categoryService = categoryService; _appService = appService; }
public CategoryController(ICategoryViewModelService categoryService) { _categoryService = categoryService; }
public PropertyController(ILogger <PropertyController> logger, ICategoryViewModelService categoryService, IApplicationService appService) { _logger = logger; _categoryService = categoryService; }
public CategoriesController(ICategoryViewModelService categoryViewModelService) { this._categoryViewModelService = categoryViewModelService; }