// // GET: /Administrator/ManufacturerManagement/ public ManufacturerManagementController(IManufacturerActionService manufacturer, IConfigurationActionService config) : base(manufacturer, config) { try { Permission = ListPermission.FirstOrDefault(c => c.Module.Equals(Helper.ValueDefine.MANUFACTURER)).Role; } catch { } }
// // GET: /Administrator/ProductManagement/ public ProductManagementController(IProductActionService _product, IProductAttributeActionService _attribute, ICategoryActionService _category, IModelActionService _model, IManufacturerActionService _manufacturer, ISearchActionService _search, IConfigurationActionService _config, IEmailTemplateActionService _emailtemplate, IEmailListActionService _emailist) : base(_product, _category, _model, _manufacturer, _search, _config, _attribute, _emailtemplate, _emailist) { try { Permission = ListPermission.FirstOrDefault(c => c.Module.Equals(Helper.ValueDefine.PRODUCT)).Role; } catch { } }
public BaseController(IManufacturerActionService _manufacturer) { this.ManufacturerService = _manufacturer; }
public BaseController(ICategoryActionService _category, IManufacturerActionService _manufacturer) { this.CategoryService = _category; this.ManufacturerService = _manufacturer; }
public BaseController(IProductActionService _product, ICategoryActionService _category, IModelActionService _model, IManufacturerActionService _manufacturer, ISearchActionService _search, IConfigurationActionService _config, IProductAttributeActionService _attribute,IAttributeActionService _att) { this.ProductService = _product; this.CategoryService = _category; this.ModelService = _model; this.ManufacturerService = _manufacturer; this.SearchService = _search; this.ConfigurationService = _config; this.ProductAttribute = _attribute; this.AttributeService = _att; }
public BaseController(IModelActionService _model, IManufacturerActionService _manufacturer) { this.ModelService = _model; this.ManufacturerService = _manufacturer; }
public BaseController(IManufacturerActionService _manufacturer, IConfigurationActionService _config) { this.ManufacturerService = _manufacturer; this.ConfigurationService = _config; }
// // GET: /Administrator/ModelManagement/ public ModelManagementController(IModelActionService _model, IManufacturerActionService _manufacturer) : base(_model, _manufacturer) { }
// // GET: /Administrator/Validate/ public ValidateController(ICategoryActionService _category, IManufacturerActionService _manufacturer) : base(_category, _manufacturer) { }