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