public async Task <IEnumerable <Course> > GetCoursesByInstructor(int id)
 {
     return(await _instructorRepository.GetCoursesByInstructor(id));
 }