コード例 #1
0
 public CategoriesController(StoreWebsiteContext context)
 {
     _context = context;
 }
コード例 #2
0
 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;
 }
コード例 #5
0
 public ErrorTbsController(StoreWebsiteContext context)
 {
     _context = context;
 }
コード例 #6
0
        //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;
 }
コード例 #10
0
 public LaptopPropertiesController(StoreWebsiteContext context)
 {
     _context = context;
 }
コード例 #11
0
        //endtest

        public WebUsersController(StoreWebsiteContext context, IProductRepository products, IWebUserRepository users)
        {
            _context  = context;
            _products = products;
            _users    = users;
        }
コード例 #12
0
 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;
 }
コード例 #17
0
 public CategoriesRepository(StoreWebsiteContext Context)
 {
     _Context = Context;
 }
コード例 #18
0
 public AccessoriesController(StoreWebsiteContext context)
 {
     _context = context;
 }
コード例 #19
0
 public UserFavoritesController(StoreWebsiteContext context)
 {
     _context = context;
 }