Ejemplo n.º 1
0
 public CategoryService(InnfactContext _db)
 {
     db = _db;
 }
Ejemplo n.º 2
0
 public AccountController(InnfactContext db, JwtHelper _jwtHelper)
 {
     accountService = new AccountService(db);
     jwtHelper      = _jwtHelper;
 }
Ejemplo n.º 3
0
 public CartController(InnfactContext db)
 {
     cartService = new CartService(db);
 }
Ejemplo n.º 4
0
 public ProductService(InnfactContext _db)
 {
     db = _db;
 }
Ejemplo n.º 5
0
 public IndexController(InnfactContext _db)
 {
     imageService    = new ImageService(_db);
     categoryService = new CategoryService(_db);
 }
Ejemplo n.º 6
0
 public ImageService(InnfactContext _db)
 {
     db = _db;
 }
Ejemplo n.º 7
0
 public CollectionController(InnfactContext _db)
 {
     categoryService = new CategoryService(_db);
     productService  = new ProductService(_db);
 }
Ejemplo n.º 8
0
 public OrderService(InnfactContext _db)
 {
     db = _db;
 }
Ejemplo n.º 9
0
 public OrderController(InnfactContext _db)
 {
     orderService = new OrderService(_db);
 }
Ejemplo n.º 10
0
 public FavoriteController(InnfactContext db)
 {
     favoriteService = new FavoriteService(db);
 }
Ejemplo n.º 11
0
 public ProductController(InnfactContext _db)
 {
     productService = new ProductService(_db);
 }
Ejemplo n.º 12
0
 public FavoriteService(InnfactContext _db)
 {
     db = _db;
 }
Ejemplo n.º 13
0
 public CartService(InnfactContext _db)
 {
     db = _db;
 }
Ejemplo n.º 14
0
 public AccountService(InnfactContext _db)
 {
     db = _db;
 }