public EmartController(SellerContext context, BuyerContext context1, ProductContext context2, IWebHostEnvironment hostingEnvironment)
 {
     _context  = context;
     _context1 = context1;
     _context2 = context2;
     this.hostingEnvironment = hostingEnvironment;
 }
Exemplo n.º 2
0
 public BuyerRepository(BuyerContext context)
 {
     _context = context;
 }
Exemplo n.º 3
0
 public BuyerController(BuyerContext context, CategoryContext context1)
 {
     this._context  = context;
     this._context1 = context1;
 }
Exemplo n.º 4
0
        // private object e;

        public BuyerController(BuyerContext context)

        {
            this._context = context;
        }
Exemplo n.º 5
0
 public ItemRepository(BuyerContext context)
 {
     _context = context;
 }
Exemplo n.º 6
0
 public UserRepository(BuyerContext buyerContext)
 {
     _buyerContext = buyerContext;
 }
Exemplo n.º 7
0
 public BuyerController(BuyerContext buy)
 {
     this.Context = buy;
 }
Exemplo n.º 8
0
 public BuyersController(BuyerContext context)
 {
     _context = context;
 }
Exemplo n.º 9
0
 public BuyerController(BuyerContext bcontext)
 {
     _bcontext = bcontext;
 }