Ejemplo n.º 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;
 }
Ejemplo n.º 3
0
 public ShoppingCart(CardsDbContext cardsDbContext)
 {
     _Context = cardsDbContext;
 }
 public CardsOfTheMonthRepositoryFromDatabase(CardsDbContext cardsDbContext)
 {
     _Context = cardsDbContext;
 }
 public OrderRespository(CardsDbContext dbContext, ShoppingCart shoppingCart)
 {
     _context      = dbContext;
     _shoppingCart = shoppingCart;
 }
Ejemplo n.º 6
0
 public StartupHelper(CardsDbContext dbContext)
 {
     _dbContext = dbContext;
 }
 public EFCardsRepository(CardsDbContext context)
 {
     this.context = context;
 }