Exemplo n.º 1
0
 public GroupDisciplineController(IGroupService groupService, IAcademicDisciplineService academicDisciplineService,
                                  ILessonService lessonService, ITeacherService teacherService, IGroupDisciplineService groupDisciplineService,
                                  IUnitOfWork unitOfWork)
 {
     _groupService = groupService;
     _academicDisciplineService = academicDisciplineService;
     _lessonService             = lessonService;
     _teacherService            = teacherService;
     _groupDisciplineService    = groupDisciplineService;
     _unitOfWork = unitOfWork;
 }
		public GroupDisciplinesController(IGroupDisciplineService groupDisciplineService)
		{
			_groupDisciplineService = groupDisciplineService;
		}
Exemplo n.º 3
0
 public GDCabinetController(IGDCabinetService cabinetService, IGroupDisciplineService groupDisciplineService)
 {
     _cabinetService         = cabinetService;
     _groupDisciplineService = groupDisciplineService;
 }