Exemplo n.º 1
0
        public async Task AddAsync(Bet bet)
        {
            {
                await _dbContext.Bets.AddAsync(bet);

                await _dbContext.SaveChangesAsync();
            }
        }
Exemplo n.º 2
0
        public async Task AddAsync(Participant participant)
        {
            {
                await _dbContext.Participants.AddAsync(participant);

                await _dbContext.SaveChangesAsync();
            }
        }
Exemplo n.º 3
0
        public async Task AddAsync(User user)
        {
            await _dbContext.Users.AddAsync(user);

            await _dbContext.SaveChangesAsync();
        }
Exemplo n.º 4
0
        public async Task AddAsync(Match match)
        {
            await _dbContext.Matches.AddAsync(match);

            await _dbContext.SaveChangesAsync();
        }