Exemplo n.º 1
0
 public ActionResult Edit([Bind(Include = "personaID,Nombre,Apellido_Primario,Apellido_Segundo,TipoDocumentoID,NumeroDocumento,SexoID,CuidadID,Direccion,Telefono,Numero_Celular,Email,ProgramaID,Numero_Ficha,EstadoID,RolesID,NovedadesID")] Persona persona)
 {
     if (ModelState.IsValid)
     {
         db.Entry(persona).State = EntityState.Modified;
         db.SaveChanges();
         return(RedirectToAction("Index"));
     }
     ViewBag.CuidadID        = new SelectList(db.Ciudads, "CuidadID", "NombreCiudad", persona.CuidadID);
     ViewBag.EstadoID        = new SelectList(db.Estadoes, "EstadoID", "NombreEstado", persona.EstadoID);
     ViewBag.ProgramaID      = new SelectList(db.Programas, "ProgramaID", "NombrePrograma", persona.ProgramaID);
     ViewBag.RolesID         = new SelectList(db.Roles, "RolesID", "NombreRoles", persona.RolesID);
     ViewBag.SexoID          = new SelectList(db.Sexoes, "SexoID", "NombreSexo", persona.SexoID);
     ViewBag.TipoDocumentoID = new SelectList(db.Tipo_Documento, "TipoDocumentoID", "NombreDocumento", persona.TipoDocumentoID);
     return(View(persona));
 }
 public ActionResult Edit([Bind(Include = "ClienteId,Cedula,NombreCliente,ApellidoCliente,Telefono,Celular,Direccion,Email")] Cliente cliente)
 {
     try
     {
         if (ModelState.IsValid)
         {
             db.Entry(cliente).State = EntityState.Modified;
             db.SaveChanges();
             return(RedirectToAction("Index"));
         }
         return(View(cliente));
     }
     catch
     {
         return(View(cliente));
     }
 }
 public ActionResult Edit([Bind(Include = "IdEntrete,IdCatEntrete,IdCatGenero,Nombre,Descripcion,Stock,Precio,PrecioVent")] Entretenimiento entretenimiento)
 {
     try
     {
         if (ModelState.IsValid)
         {
             db.Entry(entretenimiento).State = EntityState.Modified;
             db.SaveChanges();
             return(RedirectToAction("Index"));
         }
         ViewBag.IdCatEntrete = new SelectList(db.CatEntretenimientoes, "IdCatEntrete", "NombreCategoria", entretenimiento.IdCatEntrete);
         ViewBag.IdCatGenero  = new SelectList(db.CatPeliculas, "IdCatGenero", "NombreGenero", entretenimiento.IdCatGenero);
         return(View(entretenimiento));
     }
     catch
     {
         return(View(entretenimiento));
     }
 }
Exemplo n.º 4
0
        //      [ValidateAntiForgeryToken]
        public ActionResult Edit([Bind(Include = "iddetalleorden,Orden_Id,Hardware_Id,seriedt,usuariof,telefonof,ubicacion,cableseg,mouse,maleta,accesorio,valor,IGV,total,obscambio,estadodetalleorden,fregistro, gremision, grecepcion, codigontb, typedevice, seriehw, nmbrand, nmmodel, partnumberhw, snbatery, sncharger, nmprocessor, ghzprocessor, mcapacity, capacitystorage, lic, nmequipo, obshw, sefacturo, tipohardwareestado, descripciontipohardwareestado,moneda, identificador ")] DetalleOrden detalleOrden)
        {
            // db.DetalleOrden['estdodetalee'];
            var  estadodetalleorden = detalleorden.Orden_Id;
            bool mensaje;

            if (ModelState.IsValid)
            {
                db.Entry(detalleOrden).State = EntityState.Modified;
                db.SaveChanges();
                // return RedirectToAction("Index");
                mensaje = true;
                return(Json(mensaje));
            }



            ViewBag.Hardware_Id = new SelectList(db.Hardware, "idhw", "seriehw", detalleOrden.Hardware_Id);
            ViewBag.Orden_Id    = new SelectList(db.Orden, "idorden", "codigoorden", detalleOrden.Orden_Id);
            return(View(detalleOrden));
        }
 public void Update(TEntity obj)
 {
     Db.Entry(obj).State = EntityState.Modified;
     Db.SaveChanges();
 }