Пример #1
0
 public CourseController(ICourseManagementService courseservice)
 {
     this.courseservice = courseservice;
 }
Пример #2
0
 public StudentController(IStudentManagementService stdManagementService, ICourseManagementService courseservice)
 {
     this.stdManagementService = stdManagementService;
     this.courseservice        = courseservice;
 }