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