Пример #1
0
 public PlacedUserBetRepository(KryptoteketContext context)
 {
     _context = context;
     _set     = _context.PlacedBets;
 }
 public BetRepository(KryptoteketContext context)
 {
     _context = context;
     _set     = _context.Bets;
 }
 public RefExchangeRepository(KryptoteketContext context)
 {
     _context = context;
     _set     = _context.RefExchanges;
 }
 public RefUserRepository(KryptoteketContext context)
 {
     _context = context;
     _set     = _context.RefUsers;
 }
 public FinishedBetPlacementsRepository(KryptoteketContext context)
 {
     _context = context;
     _set     = _context.FinishedBetPlacements;
 }
Пример #6
0
 public ReflinkRepository(KryptoteketContext context)
 {
     _context = context;
     _set     = _context.RefLinks;
 }