/// <summary> /// Selects records based on the passed filters as a collection (List) of CourseEnrollmentInfo sorted by the sort expression. /// </summary> public static List <CourseEnrollmentInfo> SelectAllDynamicWhere(int?enrollmentId, int?courseId, int?studentId, string comments, string sortByExpression) { List <CourseEnrollmentInfo> objCourseEnrollmentInfoCol = CourseEnrollmentInfoDataLayer.SelectAllDynamicWhere(enrollmentId, courseId, studentId, comments); return(SortByExpression(objCourseEnrollmentInfoCol, sortByExpression)); }
/// <summary> /// Selects records based on the passed filters as a collection (List) of CourseEnrollmentInfo. /// </summary> public static List <CourseEnrollmentInfo> SelectAllDynamicWhere(int?enrollmentId, int?courseId, int?studentId, string comments) { return(CourseEnrollmentInfoDataLayer.SelectAllDynamicWhere(enrollmentId, courseId, studentId, comments)); }