public ActionResult Create([Bind(Include = "WC_Id,Location,Year")] WorldCup worldCup) { if (ModelState.IsValid) { db.WorldCups.Add(worldCup); db.SaveChanges(); return(RedirectToAction("Index")); } return(View(worldCup)); }
public ActionResult Create([Bind(Include = "Group_Id,Name")] Group group) { if (ModelState.IsValid) { db.Groups.Add(group); db.SaveChanges(); return(RedirectToAction("Index")); } return(View(group)); }
public ActionResult Create([Bind(Include = "Country_Id,Name")] Country country) { if (ModelState.IsValid) { db.Countries.Add(country); db.SaveChanges(); return(RedirectToAction("Index")); } return(View(country)); }
public ActionResult Create([Bind(Include = "Scorer_Id,Name,Surname,Country_Id")] Scorer scorer) { if (ModelState.IsValid) { db.Scorers.Add(scorer); db.SaveChanges(); return(RedirectToAction("Index")); } ViewBag.Country_Id = new SelectList(db.Countries, "Country_Id", "Name", scorer.Country_Id); return(View(scorer)); }
public ActionResult Create([Bind(Include = "Phase_Id,PhaseName,WC_Id")] Phase phase) { if (ModelState.IsValid) { db.Phases.Add(phase); db.SaveChanges(); return(RedirectToAction("Index")); } ViewBag.WC_Id = new SelectList(db.WorldCups, "WC_Id", "Location", phase.WC_Id); return(View(phase)); }
public ActionResult Create([Bind(Include = "Amount,Scorer_Id,Game_Id")] ScorerInGame scorerInGame) { if (ModelState.IsValid) { db.ScorerInGames.Add(scorerInGame); db.SaveChanges(); return(RedirectToAction("Index")); } ViewBag.Game_Id = new SelectList(db.Games, "Game_Id", "Game_Id", scorerInGame.Game_Id); ViewBag.Scorer_Id = new SelectList(db.Scorers, "Scorer_Id", "Name", scorerInGame.Scorer_Id); return(View(scorerInGame)); }
public ActionResult Create([Bind(Include = "Country_Id,Group_Id,WC_Id")] CountryInGroup countryInGroup) { if (ModelState.IsValid) { db.CountryInGroups.Add(countryInGroup); db.SaveChanges(); return(RedirectToAction("Index")); } ViewBag.Country_Id = new SelectList(db.Countries, "Country_Id", "Name", countryInGroup.Country_Id); ViewBag.Group_Id = new SelectList(db.Groups, "Group_Id", "Name", countryInGroup.Group_Id); ViewBag.WC_Id = new SelectList(db.WorldCups, "WC_Id", "Location", countryInGroup.WC_Id); return(View(countryInGroup)); }
public ActionResult Create([Bind(Include = "Game_Id,Score1_90,Score2_90,Score1_120,Score2_120,PK1,PK2,Group_Id,WC_Id,Country_Id1,Country_Id2")] Game game) { if (ModelState.IsValid) { db.Games.Add(game); db.SaveChanges(); return(RedirectToAction("Index")); } ViewBag.Country_Id1 = new SelectList(db.Countries, "Country_Id", "Name", game.Country_Id1); ViewBag.Country_Id2 = new SelectList(db.Countries, "Country_Id", "Name", game.Country_Id2); ViewBag.Group_Id = new SelectList(db.Groups, "Group_Id", "Name", game.Group_Id); ViewBag.WC_Id = new SelectList(db.WorldCups, "WC_Id", "Location", game.WC_Id); return(View(game)); }