コード例 #1
0
 public CoursController(ICoursService coursService)
 {
     _coursService = coursService;
 }
コード例 #2
0
 public ClassesController(IClassesService service, IProfsService profs, IElevesService eleves, ICoursService cours) : base(service)
 {
     this._profs = profs;
     this._cours = cours;
 }
コード例 #3
0
 public CourseController(ICoursService coursService)
 {
     _coursService = coursService;
 }