public ShippersController(ProjectShopAPIContext context)
 {
     _context = context;
 }
 public SuppliersController(ProjectShopAPIContext context)
 {
     _context = context;
 }
 public UserDao(ProjectShopAPIContext _db)
 {
     db = _db;
 }
Example #4
0
 public HomeController(ProjectShopAPIContext context)
 {
     _context = context;
 }
Example #5
0
 public CartController(ProjectShopAPIContext context, IMapper mapper, Cart cartService)
 {
     _context = context;
     _mapper  = mapper;
     cart     = cartService;
 }
Example #6
0
 public CategorieController(ProjectShopAPIContext _db, IHostingEnvironment environment)
 {
     db           = _db;
     _environment = environment;
 }
Example #7
0
 public CategorieDao(ProjectShopAPIContext _db)
 {
     db = _db;
 }
Example #8
0
 public ProductDao(ProjectShopAPIContext _db)
 {
     db = _db;
 }
Example #9
0
 public apiController(ProjectShopAPIContext context, IMapper mapper)
 {
     _context = context;
     _mapper  = mapper;
 }
Example #10
0
 public CategorieController(ProjectShopAPIContext _db)
 {
     db = _db;
 }
Example #11
0
 public ProductsController(ProjectShopAPIContext context, IHostingEnvironment environment)
 {
     _context     = context;
     _environment = environment;
 }
Example #12
0
 public LoginController(ProjectShopAPIContext context)
 {
     _context = context;
 }
Example #13
0
 public categoriesController(ProjectShopAPIContext context)
 {
     _context = context;
 }
Example #14
0
 public MyDao(ProjectShopAPIContext context)
 {
     _context = context;
 }