Ejemplo n.º 1
0
        public async Task <IActionResult> ByIdEducation(Guid Id)
        {
            ViewBag.EducationContentTypeList = _educationService.GetAllEducationContentType();

            var education = await _educationService.GetEducationByIdAsync(Id);

            return(View(education));
        }