Exemplo n.º 1
0
 public CategoriesController(StoreWebsiteContext context)
 {
     _context = context;
 }
 public AdminshopsController(StoreWebsiteContext context, IShopRepository shop)
 {
     _context = context;
     _shop    = shop;
 }
Exemplo n.º 3
0
 public PaymentsController(StoreWebsiteContext context)
 {
     _context = context;
 }
Exemplo n.º 4
0
 public WebUserRepository(StoreWebsiteContext Context)
 {
     _Context = Context;
 }
 public ErrorTbsController(StoreWebsiteContext context)
 {
     _context = context;
 }
        //end test

        public ProductsController(IProductRepository products, StoreWebsiteContext context)
        {
            _context  = context;
            _products = products;
        }
Exemplo n.º 7
0
 public UserProductCommentsController(StoreWebsiteContext context)
 {
     _context = context;
 }
Exemplo n.º 8
0
 public OrdersController(StoreWebsiteContext context)
 {
     _context = context;
 }
Exemplo n.º 9
0
 public UserEmailsController(StoreWebsiteContext context)
 {
     _context = context;
 }
 public LaptopPropertiesController(StoreWebsiteContext context)
 {
     _context = context;
 }
Exemplo n.º 11
0
        //endtest

        public WebUsersController(StoreWebsiteContext context, IProductRepository products, IWebUserRepository users)
        {
            _context  = context;
            _products = products;
            _users    = users;
        }
 public MobilePropertiesController(StoreWebsiteContext context, IProductRepository products)
 {
     _context  = context;
     _products = products;
 }
Exemplo n.º 13
0
 public BrandsController(StoreWebsiteContext context)
 {
     _context = context;
 }
Exemplo n.º 14
0
 public ProductPictures1Controller(StoreWebsiteContext context)
 {
     _context = context;
 }
Exemplo n.º 15
0
 public ProductRepository(StoreWebsiteContext Context)
 {
     _Context = Context;
 }
Exemplo n.º 16
0
 public ShopRepository(StoreWebsiteContext Context)
 {
     _Context = Context;
 }
 public CategoriesRepository(StoreWebsiteContext Context)
 {
     _Context = Context;
 }
 public AccessoriesController(StoreWebsiteContext context)
 {
     _context = context;
 }
 public UserFavoritesController(StoreWebsiteContext context)
 {
     _context = context;
 }