public ActionResult ReportAge(int age)
        {
            string contentType = "application/pdf";
            string fileName    = "reportePruebaPractica.pdf";
            var    content     = employeeViewModel.ExportToPdf(new EL.Filters.EmployeeFilter {
                Age = age
            });

            return(File(content, contentType, fileName));
        }