Ejemplo n.º 1
0
 public User(Library userLibrary, string userName, Playlist userPlaylist)
 {
     this.userName = userName;
     library = userLibrary;
     playlist = userPlaylist;
 }
Ejemplo n.º 2
0
 public User(string userName)
 {
     this.userName = userName;
     library = new Library();
     playlist = new Playlist();
 }