Exemple #1
0
 public ShitheadGameEngine(
     CardsDbContext dbContext,
     IDeckFactory deckFactory,
     IShitheadPileLogic shitheadPileLogic,
     IRealtimeService realtimeService)
 {
     _dbContext         = dbContext;
     _deckFactory       = deckFactory;
     _shitheadPileLogic = shitheadPileLogic;
     _realtimeService   = realtimeService;
 }
 public EFCardsRepository(CardsDbContext dbContext)
 {
     _dbContext = dbContext;
 }
 public ShoppingCart(CardsDbContext cardsDbContext)
 {
     _Context = cardsDbContext;
 }
 public CardsOfTheMonthRepositoryFromDatabase(CardsDbContext cardsDbContext)
 {
     _Context = cardsDbContext;
 }
 public OrderRespository(CardsDbContext dbContext, ShoppingCart shoppingCart)
 {
     _context      = dbContext;
     _shoppingCart = shoppingCart;
 }
Exemple #6
0
 public StartupHelper(CardsDbContext dbContext)
 {
     _dbContext = dbContext;
 }
 public EFCardsRepository(CardsDbContext context)
 {
     this.context = context;
 }