public BannerController(IBannerService bannerService, IHostingEnvironment hostingEnvironment, IBannerDetailService bannerDetailService, IBatchInformationService batchInformationService)
 {
     _bannerService           = bannerService;
     _hostingEnvironment      = hostingEnvironment;
     _bannerDetailService     = bannerDetailService;
     _batchInformationService = batchInformationService;
 }
Example #2
0
 public BatchController(IUserRoleJurisdictionService userRoleJurisdictionService, IModuleInfoService moduleInfoService,
                        IBatchInformationService batchInformationService) : base(userRoleJurisdictionService, moduleInfoService)
 {
     _userRoleJurisdictionService = userRoleJurisdictionService;
     _moduleInfoService           = moduleInfoService;
     _batchInformationService     = batchInformationService;
 }
 public ProductController(IProductInformationService productInformationService, IHostingEnvironment hostingEnvironment
                          , IProductDetailService productDetailService, IBatchInformationService batchInformationService)
 {
     _productInformationService = productInformationService;
     _hostingEnvironment        = hostingEnvironment;
     _productDetailService      = productDetailService;
     _batchInformationService   = batchInformationService;
 }
 public bannersController(IUserRoleJurisdictionService userRoleJurisdictionService, IModuleInfoService moduleInfoService, IBannerService bannerService,
                          IBannerDetailService bannerDetailService,
                          IBatchInformationService batchInformationService,
                          IHostingEnvironment hostingEnvironment) : base(userRoleJurisdictionService, moduleInfoService)
 {
     _moduleInfoService           = moduleInfoService;
     _userRoleJurisdictionService = userRoleJurisdictionService;
     _hostingEnvironment          = hostingEnvironment;
     _batchInformationService     = batchInformationService;
     _bannerService       = bannerService;
     _bannerDetailService = bannerDetailService;
 }
Example #5
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;
        }
Example #6
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;
 }
Example #7
0
 public BatchController(IBatchInformationService batchInformationService)
 {
     _batchInformationService = batchInformationService;
 }