Example #1
0
 public SemesterCoursesController(IDepartmentsServices DepartmentsServices, ICoursesService coursesService, ISemesterCoursesServices semesterCoursesSevices, ICourseRefServices courseRefServices, ISemesterStudentServices semesterStudentServices, IUsersServices usersServices, ISemStudentCoursesServices semStudentCoursesServices)
 {
     _DepartmentsServices       = DepartmentsServices;
     _coursesService            = coursesService;
     _semesterCoursesSevices    = semesterCoursesSevices;
     _courseRefServices         = courseRefServices;
     _semesterStudentServices   = semesterStudentServices;
     _usersServices             = usersServices;
     _semStudentCoursesServices = semStudentCoursesServices;
 }
Example #2
0
 public CoursesController(ICoursesService CoursesService, ICourseRefServices CourseRefServices, ISemesterCoursesServices Semester)
 {
     this._CoursesService    = CoursesService;
     this._CourseRefServices = CourseRefServices;
     this._Semester          = Semester;
 }
Example #3
0
 public DepartmentsController(IDepartmentsServices DepartmentsServices, IUsersServices IUsersServices, ISemesterCoursesServices Semester)
 {
     this._DepartmentsServices = DepartmentsServices;
     this._IUsersServices      = IUsersServices;
     this._Semester            = Semester;
 }