Exemple #1
0
 public ProductController(IErrorService errorService,
                          IProductService productService, IBrandService brandService,
                          IExportManagerService exportManager,
                          IImportManagerService importManager)
     : base(errorService)
 {
     _productService = productService;
     _brandService   = brandService;
     _exportManager  = exportManager;
     _importManager  = importManager;
 }
Exemple #2
0
 public ProductController(IProductService productService,
                          IProductCategoryService productCategoryService,
                          IBrandService brandService, IExportManagerService exportManager,
                          IImportManagerService importManager)
 {
     _importManager          = importManager;
     _exportManager          = exportManager;
     _productService         = productService;
     _brandService           = brandService;
     _productCategoryService = productCategoryService;
 }
Exemple #3
0
 public ProductController(IProductService productService,
                          IProductCategoryService productCategoryService,
                          IManufactorService manufactorService,
                          IBrandService brandService, IExportManagerService exportManager,
                          IImportManagerService importManager,
                          IReviewService reviewService)
 {
     _manufactorService      = manufactorService;
     _importManager          = importManager;
     this.reviewService      = reviewService;
     _exportManager          = exportManager;
     _productService         = productService;
     _brandService           = brandService;
     _productCategoryService = productCategoryService;
 }
Exemple #4
0
 public ProductController(IErrorService errorService,
                          IManufactorService manufactorService,
                          IProductService productService, IBrandService brandService,
                          IExportManagerService exportManager,
                          IUnitOfWork unitOfWork,
                          IImportManagerService importManager)
     : base(errorService)
 {
     _manufactorService = manufactorService;
     _productService    = productService;
     _brandService      = brandService;
     _exportManager     = exportManager;
     _importManager     = importManager;
     _unitOfWork        = unitOfWork;
 }