public ProductsController(ICategoryMasterService categoryMasterService, IFeedbackService feedbackService,
                           ISubCategoryService subCategoryService, IProductService productService, IHomeService homeService) : base(productService)
 {
     _categoryMasterService = categoryMasterService;
     _subCategoryService    = subCategoryService;
     _productService        = productService;
     _feedbackService       = feedbackService;
     _homeService           = homeService;
 }
Beispiel #2
0
 public HomeController(ICategoryMasterService categoryMasterService, IFeedbackService feedbackService,
                       ISubCategoryService subCategoryService, IProductService productService, IHomeService sliderMasterService) : base(productService)
 {
     _categoryMasterService = categoryMasterService;
     _feedbackService       = feedbackService;
     _subCategoryService    = subCategoryService;
     _productService        = productService;
     _sliderService         = sliderMasterService;
     _UseradminService      = new UseradminService();
 }
 public ProductController(ICategoryMasterService categoryMasterService, ISubCategoryService subCategoryService, IProductService productService)
 {
     _categoryMasterService = categoryMasterService;
     _subCategoryService    = subCategoryService;
     _productService        = productService;
 }
Beispiel #4
0
 public SubCategoryController(ICategoryMasterService categoryMasterService, ISubCategoryService subCategoryService)
 {
     _categoryMasterService = categoryMasterService;
     _subCategoryService    = subCategoryService;
     _UseradminService      = new UseradminService();
 }
Beispiel #5
0
 public CategoryController(ICategoryMasterService categoryMasterService)
 {
     _categoryMasterService = categoryMasterService;
 }
 public CategoryMasterController(ICategoryMasterService categoryMasterService)
 {
     this.categoryMasterService = categoryMasterService;
 }
Beispiel #7
0
 public SupplierRequestController(ISupplierRequestService supplierRequest, ICategoryMasterService categoryMasterService)
 {
     this.supplierRequest = supplierRequest;
     this.categoryService = categoryMasterService;
 }