public ActionResult Reporte14E() { string name = TempData["username"].ToString(); string nameRol = TempData["rol"].ToString(); int codUser = Int32.Parse(TempData["codUser"].ToString()); ViewBag.name = name; ViewBag.rol = nameRol; TempData["username"] = name; TempData["rol"] = nameRol; TempData["codUser"] = codUser; DAOUsuario dataU = DAOUsuario.getInstance(); string today = DateTime.Now.ToString("dd/MM/yyyy HH:mm:ss tt"); string accion = "Reporte 14E"; dataU.insertarAccion(codUser, 2, today, accion); OficinaDAO data = OficinaDAO.getInstance(); List <Oficina> paquetes = data.obtenerReporte14E(); return(View(paquetes)); }