예제 #1
0
 public CategoriesController(StoreWebsiteContext context)
 {
     _context = context;
 }
 public AdminshopsController(StoreWebsiteContext context, IShopRepository shop)
 {
     _context = context;
     _shop    = shop;
 }
예제 #3
0
 public PaymentsController(StoreWebsiteContext context)
 {
     _context = context;
 }
예제 #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;
        }
예제 #7
0
 public UserProductCommentsController(StoreWebsiteContext context)
 {
     _context = context;
 }
예제 #8
0
 public OrdersController(StoreWebsiteContext context)
 {
     _context = context;
 }
예제 #9
0
 public UserEmailsController(StoreWebsiteContext context)
 {
     _context = context;
 }
 public LaptopPropertiesController(StoreWebsiteContext context)
 {
     _context = context;
 }
예제 #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;
 }
예제 #13
0
 public BrandsController(StoreWebsiteContext context)
 {
     _context = context;
 }
예제 #14
0
 public ProductPictures1Controller(StoreWebsiteContext context)
 {
     _context = context;
 }
예제 #15
0
 public ProductRepository(StoreWebsiteContext Context)
 {
     _Context = Context;
 }
예제 #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;
 }