// Hämtar ett antal banor baserat på radindex och sidstorlek
 public IEnumerable <Course> GetCoursesPageWise(int maximumRowsint, int startRowIndex, out int totalRowCount)
 {
     return(CourseDAL.GetCoursesPageWise(maximumRowsint, startRowIndex, out totalRowCount));
 }