예제 #1
0
파일: Song.cs 프로젝트: sondet/JesperSamuel
 public Song(Artist artist, string title)
 {
     if (title == null || artist == null) throw new ArgumentNullException();
     Artist = artist;
     Title = title;
 }
예제 #2
0
파일: Song.cs 프로젝트: sondet/JesperSamuel
 public Song()
 {
     Artist = new Artist();
     Title = "No titel";
 }