AssessmentAnywhere.Services.AssessmentIndex.ResultPage.ResultPage C# (CSharp) Method

ResultPage() public method

public ResultPage ( IEnumerable results, int totalCount ) : System.Collections.Generic
results IEnumerable
totalCount int
return System.Collections.Generic
        public ResultPage(IEnumerable<IAssessment> results, int totalCount)
        {
            this.results = results;
            this.totalCount = totalCount;
        }
ResultPage