Example #1
0
 public ImageService(innfactContext _db)
 {
     db = _db;
 }
Example #2
0
 public ProductService(innfactContext _db)
 {
     db = _db;
 }
Example #3
0
 public AccountService(innfactContext _db)
 {
     db = _db;
 }
Example #4
0
 public IndexController(innfactContext _db)
 {
     imageService    = new ImageService(_db);
     categoryService = new CategoryService(_db);
 }
Example #5
0
 public CategoryService(innfactContext _db)
 {
     db = _db;
 }
Example #6
0
 public AccountController(innfactContext db)
 {
     accountService = new AccountService(db);
 }
 public CollectionController(innfactContext _db)
 {
     categoryService = new CategoryService(_db);
     productService  = new ProductService(_db);
 }
Example #8
0
 public ProductController(innfactContext _db)
 {
     productService = new ProductService(_db);
 }