NHS111.Models.Models.Web.JustToBeSafeViewModel.OrderedQuestions C# (CSharp) Метод

OrderedQuestions() публичный Метод

public OrderedQuestions ( ) : List
Результат List
        public List<QuestionWithAnswers> OrderedQuestions()
        {
            return Questions.OrderBy(questionWithAnswers => questionWithAnswers.Question.Id).ToList();
        }