Exemple #1
0
 private Album(SongCollection songCollection, string name, Artist artist, Genre genre)
 {
     this.songCollection = songCollection;
     this.album          = name;
     this.artist         = artist;
     this.genre          = genre;
 }
Exemple #2
0
 private Album(MsAlbum album)
 {
     this.album = album;
 }