public ActionResult DeleteConfirmed(long id)
        {
            TelespectadorParticipante telespectadorParticipante = db.TelespactadorParticipante.Find(id);

            db.TelespactadorParticipante.Remove(telespectadorParticipante);
            db.SaveChanges();
            return(RedirectToAction("Index"));
        }
 public ActionResult Edit([Bind(Include = "ID,IdentificadorDoTelespectador")] TelespectadorParticipante telespectadorParticipante)
 {
     if (ModelState.IsValid)
     {
         db.Entry(telespectadorParticipante).State = EntityState.Modified;
         db.SaveChanges();
         return(RedirectToAction("Index"));
     }
     return(View(telespectadorParticipante));
 }
        public ActionResult Create([Bind(Include = "ID,IdentificadorDoTelespectador")] TelespectadorParticipante telespectadorParticipante)
        {
            if (ModelState.IsValid)
            {
                db.TelespactadorParticipante.Add(telespectadorParticipante);
                db.SaveChanges();
                return(RedirectToAction("Index"));
            }

            return(View(telespectadorParticipante));
        }
        // GET: TelespectadorParticipantes/Delete/5
        public ActionResult Delete(long?id)
        {
            if (id == null)
            {
                return(new HttpStatusCodeResult(HttpStatusCode.BadRequest));
            }
            TelespectadorParticipante telespectadorParticipante = db.TelespactadorParticipante.Find(id);

            if (telespectadorParticipante == null)
            {
                return(HttpNotFound());
            }
            return(View(telespectadorParticipante));
        }