Exemplo n.º 1
0
 public Song(Artist artist, string title)
 {
     if (title == null || artist == null) throw new ArgumentNullException();
     Artist = artist;
     Title = title;
 }
Exemplo n.º 2
0
 public Song()
 {
     Artist = new Artist();
     Title = "No titel";
 }