public ShoppingOrderService(BeerShopDbContext db)
 {
     this.db = db;
 }
Exemplo n.º 2
0
 public ShoppingStyleService(BeerShopDbContext db)
 {
     this.db = db;
 }
Exemplo n.º 3
0
 public BreweryServiceTest()
 {
     this.db = Tests.GetDatabase();
 }
 public ShoppingGiftSetService(BeerShopDbContext db)
 {
     this.db = db;
 }
 public AdminUserService(BeerShopDbContext db)
 {
     this.db = db;
 }
Exemplo n.º 6
0
 public GlassServiceTest()
 {
     this.db = Tests.GetDatabase();
 }
Exemplo n.º 7
0
 public ShoppingNewsLetterService(BeerShopDbContext db)
 {
     this.db = db;
 }
 public OrderServiceTest()
 {
     this.db = Tests.GetDatabase();
 }
 public AdminMessageService(BeerShopDbContext db)
 {
     this.db = db;
 }
Exemplo n.º 10
0
 public AdminGiftSetService(BeerShopDbContext db)
 {
     this.db = db;
 }
Exemplo n.º 11
0
 public BeerCommentService(BeerShopDbContext dbContext) : base(dbContext)
 {
 }
 public AdminCountryService(BeerShopDbContext db)
 {
     this.db = db;
 }
Exemplo n.º 13
0
 public NewsLetterServiceTest()
 {
     this.db = Tests.GetDatabase();
 }
Exemplo n.º 14
0
 public ShoppingAccessoryService(BeerShopDbContext db)
 {
     this.db = db;
 }
Exemplo n.º 15
0
 public TypesController(BeerShopDbContext context)
 {
     _context = context;
 }
Exemplo n.º 16
0
 public EventService(BeerShopDbContext dbContext) : base(dbContext)
 {
 }
 public ShoppingCountryService(BeerShopDbContext db)
 {
     this.db = db;
 }
Exemplo n.º 18
0
 public AddressService(BeerShopDbContext db)
 {
     this.db = db;
 }
 public CountryServiceTest()
 {
     this.db = Tests.GetDatabase();
 }
Exemplo n.º 20
0
 public AdminNewsletterService(BeerShopDbContext db)
 {
     this.db = db;
 }
 public GiftSetServiceTest()
 {
     this.db = Tests.GetDatabase();
 }
Exemplo n.º 22
0
 public AdminBreweryService(BeerShopDbContext db)
 {
     this.db = db;
 }
Exemplo n.º 23
0
 public AdminAccessoryService(BeerShopDbContext db)
 {
     this.db = db;
 }
 public AccessoryServiceTest()
 {
     Tests.Initialize();
     this.db = Tests.GetDatabase();
 }
Exemplo n.º 25
0
 protected GenericDataService(BeerShopDbContext dbContext)
 {
     this._dbSet = dbContext.Set <T>();
     context     = dbContext;
 }
Exemplo n.º 26
0
 public GlassServiceTest()
 {
     Tests.Initialize();
     this.db = Tests.GetDatabase();
 }
Exemplo n.º 27
0
 public BeerService(BeerShopDbContext dbContext) : base(dbContext)
 {
     db = dbContext;
 }
 public AddressServiceTest()
 {
     this.db = Tests.GetDatabase();
 }
Exemplo n.º 29
0
 public ShoppingGlassService(BeerShopDbContext db)
 {
     this.db = db;
 }