Ejemplo n.º 1
0
 public ProductController(IErrorService errorService,
                          IProductService productService, IBrandService brandService,
                          IExportManagerService exportManager,
                          IImportManagerService importManager)
     : base(errorService)
 {
     _productService = productService;
     _brandService   = brandService;
     _exportManager  = exportManager;
     _importManager  = importManager;
 }
Ejemplo n.º 2
0
 public ProductController(IProductService productService,
                          IProductCategoryService productCategoryService,
                          IBrandService brandService, IExportManagerService exportManager,
                          IImportManagerService importManager)
 {
     _importManager          = importManager;
     _exportManager          = exportManager;
     _productService         = productService;
     _brandService           = brandService;
     _productCategoryService = productCategoryService;
 }
Ejemplo n.º 3
0
 public DataManageController(
     IUserInfoService userInfoService,
     IUnitOfWork unitOfWork,
     ILogService <UserInfoController> logger,
     IExportImportService exportImportService,
     IMapper mapper,
     IImportManagerService importManager)
 {
     _unitOfWork          = unitOfWork;
     _logger              = logger;
     _mapper              = mapper;
     _exportImportService = exportImportService;
     _importManager       = importManager;
 }
Ejemplo n.º 4
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;
 }
Ejemplo n.º 5
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;
 }