// GET: Employees public ActionResult Index() { using (TheCitiModels db = new TheCitiModels()); var employees = db.Employees.Include(e => e.EmpType); return(View(employees.ToList())); }
public ActionResult PrintPartialViewToPdf(int id) { using (TheCitiModels db = new TheCitiModels()); var employees = db.Employees.Include(e => e.EmpType); var report = new PartialViewAsPdf("~/Views/Employees/Index.cshtml", employees.ToList()); return(report); }