public async Task <IActionResult> TeacherDisciplinesCreateOrEdit(int EduPlanId, int DisciplineId, int EduYearId, int?TeacherDisciplineId)
        {
            TeacherDiscipline teacherDiscipline = await _metodKomissiyaRepository
                                                  .GetTeacherDisciplineByUserNameAsync(EduPlanId, DisciplineId, EduYearId, TeacherDisciplineId, User.Identity.Name);

            ViewBag.EduPlanId = EduPlanId;
            ViewBag.Teachers  = _selectListRepository.GetSelectListTeacherFio();
            return(View(teacherDiscipline));
        }