示例#1
0
 public UserController(IUserService userService, IOptions <AuthencationSetting> authencationSetting, IMapper mapper, WebHpShopDbContext dbcontext)
 {
     _userService           = userService;
     _authenticationSetting = authencationSetting.Value;
     _mapper    = mapper;
     _dbcontext = dbcontext;
 }
示例#2
0
 public SupplierReponsiory(WebHpShopDbContext dbcontext) : base(dbcontext)
 {
 }
示例#3
0
 public ProductController(IProductService productService, IMapper mapper, WebHpShopDbContext dbcontext)
 {
     _productService = productService;
     _mapper         = mapper;
     _dbcontext      = dbcontext;
 }
 public CommentController(WebHpShopDbContext dbContext)
 {
     _dbcontext = dbContext;
 }
示例#5
0
 public UserReponsitory(WebHpShopDbContext dbcontext) : base(dbcontext)
 {
 }
示例#6
0
 public BaseReponsitory(WebHpShopDbContext dbContext)
 {
     DbContext = dbContext;
 }
示例#7
0
 public ImageController(WebHpShopDbContext context, IMapper mapper, IWebHostEnvironment hostEnvironment)
 {
     _dbcontext         = context;
     webHostEnvironment = hostEnvironment;
     _mapper            = mapper;
 }
 public ManufacturerController(IManufacturerService manufacturerService, IMapper mapper, WebHpShopDbContext dbcontext)
 {
     _manufacturerService = manufacturerService;
     _mapper    = mapper;
     _dbcontext = dbcontext;
 }
示例#9
0
 public CategoryController(ICategoryService categoryService, IMapper mapper, WebHpShopDbContext dbcontext)
 {
     _categoryService = categoryService;
     _mapper          = mapper;
     _dbcontext       = dbcontext;
 }
 public DiscountController(IDiscountService discountService, IMapper mapper, WebHpShopDbContext dbcontext)
 {
     _discountService = discountService;
     _mapper          = mapper;
     _dbcontext       = dbcontext;
 }
示例#11
0
 public CategoryReponsitory(WebHpShopDbContext dbcontext) : base(dbcontext)
 {
 }
示例#12
0
 public ManufacturerReponsitory(WebHpShopDbContext dbcontext) : base(dbcontext)
 {
 }
示例#13
0
 public ReportController(WebHpShopDbContext dbContext)
 {
     _dbcontext = dbContext;
 }
示例#14
0
 public CartController(WebHpShopDbContext sdbContext)
 {
     dbContext = sdbContext;
 }
        public DiscountReponsitory(WebHpShopDbContext dbcontext) : base(dbcontext)
        {

        }
示例#16
0
 public SupplierController(ISupplierService supplierService, IMapper mapper, WebHpShopDbContext dbcontext)
 {
     _supplierService = supplierService;
     _mapper          = mapper;
     _dbcontext       = dbcontext;
 }
示例#17
0
 public ProductReponsitory(WebHpShopDbContext dbcontext) : base(dbcontext)
 {
 }
 public CheckOutController(IUserService userService, WebHpShopDbContext sdbContext, IMapper mapper)
 {
     _dbcontext   = sdbContext;
     _userService = userService;
     _mapper      = mapper;
 }