Esempio n. 1
0
 public AlbumManager(string name) : this()
 {
     this.name = name;
     album     = AlbumStorage.ReadAlbum(name);
     if (Album.Count > 0)
     {
         Index = 0;
     }
 }
Esempio n. 2
0
 public AlbumManager(string name, string pwd) : this()
 {
     this.name = name;
     album     = AlbumStorage.ReadAlbum(name, pwd);
     Password  = pwd;
 }