/// <summary> /// Public constructor supplying the interface used to store scanned songs /// </summary> /// <param name="songInterface"></param> public FTPScanner(SongStorage songInterface) { storageInterface = songInterface; }
/// <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; }