public void GivenIHaveEnteredToTheDatabaseRepository()
 {
     _repository = new BikeStoresContext();
 }
Exemplo n.º 2
0
 public StockRepository(BikeStoresContext dbContext) : base(dbContext)
 {
     _dbContext = dbContext;
 }
Exemplo n.º 3
0
 public RepositoryBase(BikeStoresContext dataContext)
 {
     _dataContext = dataContext;
     _dbSet       = _dataContext.Set <T>();
 }
Exemplo n.º 4
0
 public Handler(BikeStoresContext context, IMapper mapper)
 {
     this.context = context;
     this.mapper  = mapper;
 }
Exemplo n.º 5
0
 public StockController()
 {
     _context = new BikeStoresContext();
 }
Exemplo n.º 6
0
 public BrandsSqlRepo(BikeStoresContext context)
 {
     _context = context;
 }
Exemplo n.º 7
0
 public OrdersSqlRepo(BikeStoresContext context, ShoppingCart cart)
 {
     _context = context;
     _cart    = cart;
 }
Exemplo n.º 8
0
 public BrandsController(BikeStoresContext context)
 {
     _context = context;
 }
Exemplo n.º 9
0
 public Repository(BikeStoresContext bikeStoresContext)
 {
     _bikeStoresContext  = bikeStoresContext;
     _bikeStoresEntities = bikeStoresContext.Set <TEntity>();
 }
Exemplo n.º 10
0
 public ProductController()
 {
     _context = new BikeStoresContext();
 }
Exemplo n.º 11
0
 public CustomerRepository(BikeStoresContext bikeStoresContext) : base(bikeStoresContext)
 {
 }
Exemplo n.º 12
0
 public ProductsRepository(BikeStoresContext bikeStoreDbContext) : base(bikeStoreDbContext)
 {
     _context = bikeStoreDbContext;
 }
Exemplo n.º 13
0
 public GenericRepository(BikeStoresContext bikeStoresContext)
 {
     _bikeStoresContext = bikeStoresContext;
     _entity            = _bikeStoresContext.Set <T>();
 }
Exemplo n.º 14
0
 public CustomerController()
 {
     _context = new BikeStoresContext();
 }
Exemplo n.º 15
0
 public CustomerRepository(BikeStoresContext dbContext) : base(dbContext)
 {
     _dbContext = dbContext;
 }
Exemplo n.º 16
0
 public ValuesController(BikeStoresContext context)
 {
 }
Exemplo n.º 17
0
 public ProductsController(BikeStoresContext context)
 {
     _context = context;
 }
Exemplo n.º 18
0
 public Handler(BikeStoresContext bikeStoresContext)
 {
     this.bikeStoresContext = bikeStoresContext;
 }
Exemplo n.º 19
0
 public StaffsController(BikeStoresContext context)
 {
     _context = context;
 }
Exemplo n.º 20
0
 public BrandRepository(BikeStoresContext dbContext) : base(dbContext)
 {
     _dbContext = dbContext;
 }
Exemplo n.º 21
0
 public OrderItemController()
 {
     _context = new BikeStoresContext();
 }
Exemplo n.º 22
0
 public ProductsSqlRepo(BikeStoresContext context)
 {
     _context = context;
 }
Exemplo n.º 23
0
 public ImagenUsuario(BikeStoresContext context)
 {
     this.context = context;
 }
 public LoginRepository(BikeStoresContext bikeStoresContext) : base(bikeStoresContext)
 {
     this._bikeStoresContext = bikeStoresContext;
 }
Exemplo n.º 25
0
 public BrandController()
 {
     _context = new BikeStoresContext();
 }
Exemplo n.º 26
0
 public CustomersController(BikeStoresContext context)
 {
     _context = context;
 }
Exemplo n.º 27
0
 public OrdersController(BikeStoresContext context)
 {
     _context = context;
 }
Exemplo n.º 28
0
 public CategoriesSqlRepo(BikeStoresContext context)
 {
     _context = context;
 }
Exemplo n.º 29
0
 public CategoryController()
 {
     _context = new BikeStoresContext();
 }
Exemplo n.º 30
0
 public CategoriesRepository(BikeStoresContext dbContext) : base(dbContext)
 {
     _dbContext = dbContext;
 }