Esempio n. 1
0
        public void Add(string gameTitle, string gameEdition, string gamePlatform, int gameYear)
        {
            VideoGames.Database.Video_Games videoGame = new VideoGames.Database.Video_Games
            {
                Title    = gameTitle,
                Edition  = gameEdition,
                Platform = gamePlatform,
                Year     = gameYear
            };

            Entities.Video_Games.Add(videoGame);
            Entities.SaveChanges();
        }