Esempio n. 1
0
 public Song(string title, string genre, int duration, Poet poet)
 {
     this.title       = title;
     this.genre       = genre;
     this.duration    = duration;
     this.wordsAuthor = poet;
     this.text        = "";
 }
Esempio n. 2
0
 public void SetPoet(Poet poet)
 {
     this.wordsAuthor = poet;
 }