public async Task <IActionResult> FondOcenochnihSredstvCreateOrEdit(int EduPlanId,
                                                                            int DisciplineId, int?FondOcenochnihSredstvId, IFormFile uploadedFile)
        {
            FondOcenochnihSredstv fondOcenochnihSredstv = await _metodKomissiyaRepository
                                                          .GetFondOcenochnihSredstvByUserNameAsync(EduPlanId, DisciplineId, FondOcenochnihSredstvId, User.Identity.Name);

            if (fondOcenochnihSredstv != null)
            {
                await _metodKomissiyaRepository.UpdateFondOcenochnihSredstvAsync(fondOcenochnihSredstv, uploadedFile);
            }

            return(RedirectToAction(nameof(EduPlanPreview), new { id = EduPlanId }));
        }