예제 #1
0
 /// <summary>
 /// gets random photo of game
 /// </summary>
 /// <param name="game">id of game</param>
 /// <returns>DataRow of photo</returns>
 public static DataRow RandomPhotoOfGame(int game)
 {
     return(DalHelper.RandomWhere("GamePhotos", "Game", game));
 }