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

IndexModel() public method

public IndexModel ( int skip, int top, IEnumerable results, int totalCount ) : System.Collections.Generic
skip int
top int
results IEnumerable
totalCount int
return 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