public HomeController()
 {
     // Initialize the services
     CoursesService = new CoursesService();
     InstructorCourseAssocService = new InstructorCourseAssocService();
     StudentCourseAssocService    = new StudentCourseAssocService();
 }
 public CoursesController()
 {
     // Initialize the services
     CoursesService  = new CoursesService();
     ListDataService = new ListDataService();
     UsersService    = new UsersService();
     InstructorCourseAssocService = new InstructorCourseAssocService();
     StudentCourseAssocService    = new StudentCourseAssocService();
 }