Esempio n. 1
0
 public CourseController(ICourseManagementService courseservice)
 {
     this.courseservice = courseservice;
 }
Esempio n. 2
0
 public StudentController(IStudentManagementService stdManagementService, ICourseManagementService courseservice)
 {
     this.stdManagementService = stdManagementService;
     this.courseservice        = courseservice;
 }