Beispiel #1
0
 public DevInventory(EcomDbContext context)
 {
     _context = context;
 }
 public UserOrderPanel(EcomDbContext context, UserManager <ApplicationUser> userManager)
 {
     _context     = context;
     _userManager = userManager;
 }
Beispiel #3
0
 public AdminController(IInventory context, IConfiguration configuration, EcomDbContext order)
 {
     _context      = context;
     Configuration = configuration;
     _order        = order;
 }
 public ImageuploadController(EcomDbContext co, IHostingEnvironment hostingEnvironment)
 {
     db    = co;
     _host = hostingEnvironment;
 }
 public ProductFactory(EcomDbContext db)
 {
     _db = db;
 }
 public CategoryRepositoryImpl(EcomDbContext _db)
 {
     db = _db;
 }
Beispiel #7
0
 public AuthRepositoryImpl(EcomDbContext context)
 {
     _context = context;
 }
Beispiel #8
0
 public UserRepositoryImpl(EcomDbContext context)
 {
     this.context = context;
 }
Beispiel #9
0
 public DevOrder(EcomDbContext context)
 {
     _context = context;
 }
Beispiel #10
0
 public DevBasket(EcomDbContext context)
 {
     _context = context;
 }
 public ProductImpl(EcomDbContext _db)
 {
     db = _db;
 }
Beispiel #12
0
 public AdminOrderPanel(EcomDbContext context)
 {
     _context = context;
 }