public OrdersController(ShopoContext context)
 {
     _context = context;
 }
Пример #2
0
 //Constructor
 public AddressesController(ShopoContext shopoDbContext) => this.shopoDbContext = shopoDbContext;
 public UsersController(ShopoContext shopoContext)
 {
     _shopoContext = shopoContext;
 }
Пример #4
0
 public ProductsController(ShopoContext shopoContext)
 {
     _shopoContext = shopoContext;
 }
Пример #5
0
 public CartController(ShopoContext context)
 {
     _context = context;
 }
 //Constructor
 public CommentsController(ShopoContext shopoDbContext) => this.shopoDbContext = shopoDbContext;