Ejemplo n.º 1
0
        public async Task <IActionResult> UpdateEducation(Guid Id)
        {
            ViewBag.TeacherInformationList = _educationService.GetAllTeacherInformation();
            ViewBag.CategoryList           = _educationService.GetAllCategory();

            var education = await _educationService.GetEducationModelByIdAsync(Id);

            return(View(education));
        }