Esempio n. 1
0
 public Artist Put(Artist anotherArtist)
 {
     artists.Add(anotherArtist);
     return(anotherArtist);
 }
Esempio n. 2
0
 public static Artist Add(this ArtistCollection collection, Artist anotherArtist)
 {
     collection.Put(anotherArtist);
     return(anotherArtist);
 }