Пример #1
0
 /// <summary>
 /// gets a list of all genres
 /// </summary>
 /// <returns>list of all genres</returns>
 public static List <Genre> AllGenres()
 {
     return((from DataRow row in DbGenre.AllGenres().Rows select new Genre(row)).ToList());
 }