예제 #1
0
 public CourseController(ICourseManagementService courseservice)
 {
     this.courseservice = courseservice;
 }
예제 #2
0
 public StudentController(IStudentManagementService stdManagementService, ICourseManagementService courseservice)
 {
     this.stdManagementService = stdManagementService;
     this.courseservice        = courseservice;
 }