Exemplo n.º 1
0
 /// <summary>
 /// lists all updates for a certain game
 /// </summary>
 /// <param name="game">id of game</param>
 /// <returns>list of update</returns>
 public static List <Update> ListUpdates(int game)
 {
     return((from DataRow dr in DbUpdate.ListUpdates(game).Rows select new Update(dr)).ToList());
 }