public ActionResult actualizar2(regTipo ti) { ViewBag.hola = ti.id; ConectorDataContext db = new ConectorDataContext(); tipo t = db.tipos.Single(u => u.id == ti.id); //habitacion h = db.habitacions.Single(u => u.id == ha.id); t.nombre = ti.nombre; t.dercripcion = ti.descri; Convert.ToString(ti.precio); string al = ti.precio; ti.precio = al; //ti.precio = Convert.ToDouble(ti.precio); db.SubmitChanges(); return Redirect("../habitaciones/mostrartipo"); }
public ActionResult ReTipo(regTipo newhabitacion) { if (ModelState.IsValid) { ConectorDataContext db = new ConectorDataContext(); tipo ti = new tipo(); // habi.idtipo = newhabitacion.nombre; //ti.nombre = newhabitacion.nombre; //ti.descripcion = newhabitacion.descripcion; //ti.precio = newhabitacion.precio; // db.tipos.InsertOnSubmit(ti); ti.nombre = newhabitacion.nombre; ti.dercripcion = newhabitacion.descri; ti.precio = Convert.ToDouble(newhabitacion.precio); db.tipos.InsertOnSubmit(ti); db.SubmitChanges(); return Redirect("../habitaciones/mostrartipo"); } return View(); }
public ActionResult eliminartipo(regTipo ti) { ConectorDataContext dt = new ConectorDataContext(); if ((from i in dt.tipos where i.id == ti.id select i).ToList().Count == 0) { ViewBag.flag = 0; } else { var x = (from i in dt.tipos where i.id == ti.id select new { id = i.id, nombre = i.nombre, descripcion = i.dercripcion, precio = i.precio }).ToArray()[0]; ViewBag.id = x.id; ViewBag.nombre = x.nombre; ViewBag.descripcion = x.descripcion; ViewBag.precio = x.precio; ViewBag.flag = 1; } return View(); }