AssessmentAnywhere.Models.Assessments.IndexModel.IndexModel C# (CSharp) Метод

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

public IndexModel ( int skip, int top, IEnumerable results, int totalCount ) : System.Collections.Generic
skip int
top int
results IEnumerable
totalCount int
Результат System.Collections.Generic
        public IndexModel(int skip, int top, IEnumerable<Assessment> results, int totalCount)
        {
            Skip = skip;
            Top = top;
            Results = results;
            TotalCount = totalCount;
        }

Same methods

IndexModel::IndexModel ( int skip, int top, Services resultPage ) : System.Collections.Generic
IndexModel