public ProductController(IProductInformationService productInformationService, IHostingEnvironment hostingEnvironment
                          , IProductDetailService productDetailService, IBatchInformationService batchInformationService)
 {
     _productInformationService = productInformationService;
     _hostingEnvironment        = hostingEnvironment;
     _productDetailService      = productDetailService;
     _batchInformationService   = batchInformationService;
 }
 public BasicDataController(ICouponService couponService, IBannerService bannerService, IProductInformationService productService, IOrderService orderService,
                            IOrderDetailService orderDetailService, IProductDetailService productDetailService, ITransactionService transactionService, ILogger <BasicDataController> logger)
 {
     _couponService        = couponService;
     _bannerService        = bannerService;
     _orderService         = orderService;
     _productService       = productService;
     _orderDetailService   = orderDetailService;
     _productDetailService = productDetailService;
     _transactionService   = transactionService;
     _logger = logger;
 }
Exemple #3
0
        public ProductsController(IUserRoleJurisdictionService userRoleJurisdictionService, IModuleInfoService moduleInfoService,
                                  IProductInformationService productInformationService,
                                  IBatchInformationService batchInformationService,
                                  IHostingEnvironment hostingEnvironment)
            : base(userRoleJurisdictionService, moduleInfoService)
        {
            _userRoleJurisdictionService = userRoleJurisdictionService;
            _moduleInfoService           = moduleInfoService;
            _hostingEnvironment          = hostingEnvironment;

            _productInformationService = productInformationService;
            _batchInformationService   = batchInformationService;
        }
Exemple #4
0
 public EnterCustomController(IUserRoleJurisdictionService userRoleJurisdictionService, IModuleInfoService moduleInfoService,
                              IProductInformationService productInformationService, IBatchInformationService batchInformationService, IHostingEnvironment hostingEnvironment,
                              IBannerService bannerService, IBannerDetailService bannerDetailService, ICouponService couponService,
                              IOrderService orderService, IOrderDetailService orderDetailService) : base(userRoleJurisdictionService, moduleInfoService)
 {
     _hostingEnvironment          = hostingEnvironment;
     _userRoleJurisdictionService = userRoleJurisdictionService;
     _moduleInfoService           = moduleInfoService;
     _productInformationService   = productInformationService;
     _batchInformationService     = batchInformationService;
     _bannerService       = bannerService;
     _bannerDetailService = bannerDetailService;
     _couponService       = couponService;
     _orderService        = orderService;
     _orderDetailService  = orderDetailService;
 }
 public ProductInformationController(IProductInformationService productInformationService)
 {
     _productInformationService = productInformationService;
 }
 public ProductInformationController(IProductInformationService productInformationService, ILoggerManager logger)
 {
     _productInformationService = productInformationService;
     _logger = logger;
 }