public CoursePlanStudentController(CoursePlanStudentService coursePlanStudentService, ICoursePlanStudentRepository coursePlanStudentRepository)
 {
     CoursePlanStudentService    = coursePlanStudentService;
     CoursePlanStudentRepository = coursePlanStudentRepository;
 }
 public CoursePlanStudentService(ICoursePlanStudentRepository coursePlanStudentRepository)
 {
     CoursePlanStudentRepository = coursePlanStudentRepository;
 }