コード例 #1
0
 public ShoppingOrderService(BeerShopDbContext db)
 {
     this.db = db;
 }
コード例 #2
0
 public ShoppingStyleService(BeerShopDbContext db)
 {
     this.db = db;
 }
コード例 #3
0
 public BreweryServiceTest()
 {
     this.db = Tests.GetDatabase();
 }
コード例 #4
0
 public ShoppingGiftSetService(BeerShopDbContext db)
 {
     this.db = db;
 }
コード例 #5
0
 public AdminUserService(BeerShopDbContext db)
 {
     this.db = db;
 }
コード例 #6
0
 public GlassServiceTest()
 {
     this.db = Tests.GetDatabase();
 }
コード例 #7
0
 public ShoppingNewsLetterService(BeerShopDbContext db)
 {
     this.db = db;
 }
コード例 #8
0
 public OrderServiceTest()
 {
     this.db = Tests.GetDatabase();
 }
コード例 #9
0
 public AdminMessageService(BeerShopDbContext db)
 {
     this.db = db;
 }
コード例 #10
0
 public AdminGiftSetService(BeerShopDbContext db)
 {
     this.db = db;
 }
コード例 #11
0
 public BeerCommentService(BeerShopDbContext dbContext) : base(dbContext)
 {
 }
コード例 #12
0
 public AdminCountryService(BeerShopDbContext db)
 {
     this.db = db;
 }
コード例 #13
0
 public NewsLetterServiceTest()
 {
     this.db = Tests.GetDatabase();
 }
コード例 #14
0
 public ShoppingAccessoryService(BeerShopDbContext db)
 {
     this.db = db;
 }
コード例 #15
0
ファイル: TypesController.cs プロジェクト: mvelikova/BeerShop
 public TypesController(BeerShopDbContext context)
 {
     _context = context;
 }
コード例 #16
0
ファイル: EventService.cs プロジェクト: mvelikova/BeerShop
 public EventService(BeerShopDbContext dbContext) : base(dbContext)
 {
 }
コード例 #17
0
 public ShoppingCountryService(BeerShopDbContext db)
 {
     this.db = db;
 }
コード例 #18
0
 public AddressService(BeerShopDbContext db)
 {
     this.db = db;
 }
コード例 #19
0
 public CountryServiceTest()
 {
     this.db = Tests.GetDatabase();
 }
コード例 #20
0
 public AdminNewsletterService(BeerShopDbContext db)
 {
     this.db = db;
 }
コード例 #21
0
 public GiftSetServiceTest()
 {
     this.db = Tests.GetDatabase();
 }
コード例 #22
0
 public AdminBreweryService(BeerShopDbContext db)
 {
     this.db = db;
 }
コード例 #23
0
 public AdminAccessoryService(BeerShopDbContext db)
 {
     this.db = db;
 }
コード例 #24
0
 public AccessoryServiceTest()
 {
     Tests.Initialize();
     this.db = Tests.GetDatabase();
 }
コード例 #25
0
 protected GenericDataService(BeerShopDbContext dbContext)
 {
     this._dbSet = dbContext.Set <T>();
     context     = dbContext;
 }
コード例 #26
0
 public GlassServiceTest()
 {
     Tests.Initialize();
     this.db = Tests.GetDatabase();
 }
コード例 #27
0
ファイル: BeerService.cs プロジェクト: mvelikova/BeerShop
 public BeerService(BeerShopDbContext dbContext) : base(dbContext)
 {
     db = dbContext;
 }
コード例 #28
0
 public AddressServiceTest()
 {
     this.db = Tests.GetDatabase();
 }
コード例 #29
0
 public ShoppingGlassService(BeerShopDbContext db)
 {
     this.db = db;
 }