AssessmentAnywhere.Models.Assessments.IndexModel.IndexModel C# (CSharp) Method

IndexModel() public method

public IndexModel ( int skip, int top, Services resultPage ) : System.Collections.Generic
skip int
top int
resultPage Services
return System.Collections.Generic
        public IndexModel(int skip, int top, Services.AssessmentIndex.IResultPage resultPage)
            : this(skip, top, resultPage.Results.Select(r => new Assessment(r)).ToArray(), resultPage.TotalCount)
        {
        }

Same methods

IndexModel::IndexModel ( int skip, int top, IEnumerable results, int totalCount ) : System.Collections.Generic
IndexModel