//======================================\\ // detallar... \\ //==========================================\\ //index public IActionResult DetailTable() { var details = _planRepository.GetAllPlanDetails(); var model = _mapper.Map <IEnumerable <PlanDetail>, IEnumerable <PlanDetailViewModel> >(details); return(View(model)); }