Example #1
0
        public async Task DeleteAllMatchesFromSeasonRoundAsync(short year, byte season, byte round)
        {
            var matches = await _matchRepository.GetMatchesAsync(year, season, round);

            await _matchRepository.DeleteMatchesAsync(matches);
        }