示例#1
0
        public async Task <IEnumerable <Round> > GetAllAsync()
        {
            var rounds = await _roundRepository.GetAllAsync();

            return(rounds.OrderByDescending(x => x.Created));
        }