BC.Web.Controllers.ScoreController.GetAllSorted C# (CSharp) Méthode

GetAllSorted() private méthode

private GetAllSorted ( ) : IEnumerable
Résultat IEnumerable
        private IEnumerable<UserScoreModel> GetAllSorted()
        {
            return this.data.Users.All()
                .OrderByDescending(u => u.UserRank)
                .Select(UserScoreModel.FromUserScoreModel);
        }
    }