Exemple #1
0
 /// <summary>
 /// Public constructor supplying the interface used to store scanned songs
 /// </summary>
 /// <param name="songInterface"></param>
 public FTPScanner(SongStorage songInterface)
 {
     storageInterface = songInterface;
 }
Exemple #2
0
 /// <summary>
 /// Public constructor supplying the interface used to store scanned songs
 /// </summary>
 /// <param name="songInterface"></param>
 public UPnPScanner(SongStorage songInterface) => storageInterface = songInterface;
 /// <summary>
 /// Public constructor supplying the interface used to store scanned songs
 /// </summary>
 /// <param name="songInterface"></param>
 public InternalScanner(SongStorage songInterface)
 {
     storageInterface = songInterface;
 }