Ejemplo n.º 1
0
        //======================================\\
        //            detallar...                 \\
        //==========================================\\

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

            return(View(model));
        }