public ActionResult Editar(int Id) { var model = new ProyectoViewModel(); model.Proyectos = new ProyectosBusinessLogic().GetbyId(Id); model.EstadoList = DefaultModel.GetEstado(); model.EmpleadoList = new EmpleadoBusinessLogic().GetAllEmpleado(); if (model.Proyectos.IdProyecto == 0) { return(RedirectToAction("Consultar")); } else { return(View(model)); } }