Пример #1
0
 public ProductController(IProductCategoryService productCategoryService, IProductService productService, IProductSpecsService productSpecsService, IProductFeaturesService productFeaturesService, IBrochureService brochureService, IProductReviewService reviewService)
 {
     _productCategoryService = productCategoryService;
     _productService         = productService;
     _productSpecsService    = productSpecsService;
     _productFeaturesService = productFeaturesService;
     _brochureService        = brochureService;
     _reviewService          = reviewService;
 }
Пример #2
0
 public ProductController(IProductCategoryService productCategoryService, IProductService productService, IProductSpecsService productSpecsService, IProductFeaturesService productFeaturesService, IBrochureService brochureService, IProductReviewService reviewService)
 {
     _productCategoryService = productCategoryService;
     _productService = productService;
     _productSpecsService = productSpecsService;
     _productFeaturesService = productFeaturesService;
     _brochureService = brochureService;
     _reviewService = reviewService;
 }
Пример #3
0
 public HomeController(IUnderConstructionService underConstructionService,
    IProductService productService, IProductCategoryService productCategoryService, IBrochureService brochureService, IContactUsService contactUsService,
     IWorkflowMessageService workflowMessageService)
 {
     _underConstructionService = underConstructionService;
     _productService = productService;
     _productCategoryService = productCategoryService;
     _brochureService = brochureService;
     _contactUsService = contactUsService;
     _workflowMessageService = workflowMessageService;
 }
Пример #4
0
 public HomeController(IUnderConstructionService underConstructionService,
                       IProductService productService, IProductCategoryService productCategoryService, IBrochureService brochureService, IContactUsService contactUsService,
                       IWorkflowMessageService workflowMessageService)
 {
     _underConstructionService = underConstructionService;
     _productService           = productService;
     _productCategoryService   = productCategoryService;
     _brochureService          = brochureService;
     _contactUsService         = contactUsService;
     _workflowMessageService   = workflowMessageService;
 }
Пример #5
0
 public ProductsController(IProductService productService, IProductCategoryService productCategoryService,
                           IBrochureService brochureService, IWorkflowMessageService workflowMessageService,
                           IRequestQuoteService requestAQuoteService, IRepairApptService repairApptService, IProductReviewService productReviewService)
 {
     _productService         = productService;
     _productCategoryService = productCategoryService;
     _brochureService        = brochureService;
     _workflowMessageService = workflowMessageService;
     _requestAQuoteService   = requestAQuoteService;
     _repairApptService      = repairApptService;
     _productReviewService   = productReviewService;
 }
Пример #6
0
 public ProductsController(IProductService productService, IProductCategoryService productCategoryService,
     IBrochureService brochureService, IWorkflowMessageService workflowMessageService,
     IRequestQuoteService requestAQuoteService, IRepairApptService repairApptService, IProductReviewService productReviewService)
 {
     _productService = productService;
     _productCategoryService = productCategoryService;
     _brochureService = brochureService;
     _workflowMessageService = workflowMessageService;
     _requestAQuoteService = requestAQuoteService;
     _repairApptService = repairApptService;
     _productReviewService = productReviewService;
 }
Пример #7
0
 public BrochureController(IBrochureService brochureService, ILogger <BrochureController> logger)
 {
     _brochureService = brochureService;
     _logger          = logger;
 }