コード例 #1
0
 public CategoryService(InnfactContext _db)
 {
     db = _db;
 }
コード例 #2
0
 public AccountController(InnfactContext db, JwtHelper _jwtHelper)
 {
     accountService = new AccountService(db);
     jwtHelper      = _jwtHelper;
 }
コード例 #3
0
ファイル: CartController.cs プロジェクト: Zhou0426z/innfactB
 public CartController(InnfactContext db)
 {
     cartService = new CartService(db);
 }
コード例 #4
0
 public ProductService(InnfactContext _db)
 {
     db = _db;
 }
コード例 #5
0
ファイル: IndexController.cs プロジェクト: Zhou0426z/innfactB
 public IndexController(InnfactContext _db)
 {
     imageService    = new ImageService(_db);
     categoryService = new CategoryService(_db);
 }
コード例 #6
0
ファイル: ImageService.cs プロジェクト: Zhou0426z/innfactB
 public ImageService(InnfactContext _db)
 {
     db = _db;
 }
コード例 #7
0
 public CollectionController(InnfactContext _db)
 {
     categoryService = new CategoryService(_db);
     productService  = new ProductService(_db);
 }
コード例 #8
0
 public OrderService(InnfactContext _db)
 {
     db = _db;
 }
コード例 #9
0
 public OrderController(InnfactContext _db)
 {
     orderService = new OrderService(_db);
 }
コード例 #10
0
 public FavoriteController(InnfactContext db)
 {
     favoriteService = new FavoriteService(db);
 }
コード例 #11
0
 public ProductController(InnfactContext _db)
 {
     productService = new ProductService(_db);
 }
コード例 #12
0
 public FavoriteService(InnfactContext _db)
 {
     db = _db;
 }
コード例 #13
0
ファイル: CartService.cs プロジェクト: Zhou0426z/innfactB
 public CartService(InnfactContext _db)
 {
     db = _db;
 }
コード例 #14
0
ファイル: AccountService.cs プロジェクト: Zhou0426z/innfactB
 public AccountService(InnfactContext _db)
 {
     db = _db;
 }