コード例 #1
0
 public ActionResult AddGamesJSON(Game g)
 {
     Database.AddGame(g);
     return Json(Database.GetAll(), JsonRequestBehavior.AllowGet);
 }
コード例 #2
0
 public ActionResult Create(Game newGame)
 {
     Database.AddGame(newGame);
     return RedirectToAction("Index");
 }
コード例 #3
0
ファイル: Model.cs プロジェクト: JohnGorter/WKApp_FINALS
 public static void AddGame(Game g)
 {
     _games.Add(g);
 }