Exemplo n.º 1
0
 public Piece()
 {
     Genres       = new GenreList();
     PieceWriters = new PieceWriterList();
 }
Exemplo n.º 2
0
 //Load the genres onto this piece
 public void LoadGenres()
 {
     Genres = new GenreList();
     Genres.LoadByPieceId(this.Id);
 }