public void RemovePlayerGame(PlayerGame pg)
 {
     _context.PlayerGameSet.Remove(pg);
     _context.SaveChanges();
 }
 public void AddPlayerGame(PlayerGame pg)
 {
     _context.PlayerGameSet.Add(pg);
     _context.SaveChanges();
 }