public ActionResult Update(UNIDAD_DETALLE dto) { if (Session["Perfil"] != null) { NegocioUNIDADDET obj = new NegocioUNIDADDET(); obj.Update(dto); return(RedirectToAction("Read")); } else { return(View("../Mantenedor/LoginProcess")); } }
public ActionResult Insert(FormCollection fc) { UNIDAD_DETALLE dto = new UNIDAD_DETALLE(); dto.ID_UNIDAD = Convert.ToInt32(fc["ID_UNIDAD"]); dto.ID_TAREA = Convert.ToInt32(fc["ID_TAREA"]); dto.ESTADO = Convert.ToInt32(fc["ESTADO"]); dto.FECHA_ESTIMADA = fc["FECHA_ESTIMADA"]; dto.Rut_Usu = Convert.ToInt32(fc["Rut_Usu"]); if (Session["Perfil"] != null) { NegocioUNIDADDET obj = new NegocioUNIDADDET(); obj.Insert(dto); return(RedirectToAction("Read")); } else { return(View("../Mantenedor/LoginProcess")); } }
public ActionResult Update(int id) { if (Session["Perfil"] != null) { NegocioUNIDADDET obj = new NegocioUNIDADDET(); UNIDAD_DETALLE aux = obj.Read().FirstOrDefault(a => a.id == id); ViewBag.Unidad = aux.ID_UNIDAD; ViewBag.Tarea = aux.ID_TAREA; ViewBag.Estado = aux.ESTADO; ViewBag.Usuario = aux.Rut_Usu; DataAcces.DaoUnidad du = new DataAcces.DaoUnidad(); DataAcces.DaoTarea dt = new DataAcces.DaoTarea(); DataAcces.DaoCliente dc = new DataAcces.DaoCliente(); try { int rut_empresa = Convert.ToInt32(Session["rutempresa"]); List <UNIDAD> list = du.ListarUnidades(rut_empresa); List <TAREA> list2 = dt.ObtenerTareas(0, rut_empresa, 0); List <estado> list3 = dt.ObtenerEstadoTarea(); List <USUARIO> list4 = dc.ObtenerListaUsuarios(0, rut_empresa, 1); List <TAREA> list5 = dt.ObtenerPosts(aux.id); ViewBag.ListaUnidades = list; ViewBag.ListaTareas = list2; ViewBag.ListaEstados = list3; ViewBag.ListaUsuarios = list4; ViewBag.ListaPosts = list5; } catch (Exception ex) { new Exception("ERROR EN METODO LISTAR" + ex.Message); } return(View("Update", aux)); } else { return(View("../Mantenedor/LoginProcess")); } }
public ActionResult Update2(FormCollection fc) { if (Session["Perfil"] != null) { UNIDAD_DETALLE dto = new UNIDAD_DETALLE(); dto.id = Convert.ToInt32(fc["id"]); dto.ID_UNIDAD = Convert.ToInt32(fc["ID_UNIDAD"]); dto.ID_TAREA = Convert.ToInt32(fc["ID_TAREA"]); dto.ESTADO = Convert.ToInt32(fc["ESTADO"]); dto.Rut_Usu = Convert.ToInt32(fc["Rut_Usu"]); dto.FECHA_ESTIMADA = Convert.ToString(fc["FECHA_ESTIMADA"]); NegocioUNIDADDET obj = new NegocioUNIDADDET(); obj.Update(dto); return(RedirectToAction("Read2", "UNIDADDETALLE", new { ID_UNIDAD = dto.ID_UNIDAD })); } else { return(View("../Mantenedor/LoginProcess")); } }
public string Insert(UNIDAD_DETALLE dto) { DaoUNIDADDET dao = new DaoUNIDADDET(); return(dao.Insert(dto)); }
public string Update(UNIDAD_DETALLE dto) { DaoUNIDADDET dao = new DaoUNIDADDET(); return(dao.Update(dto)); }