public TagImport(IHorsifySettings horsifySettings)
 {
     _songTagger       = new SongTaggerId3();
     _songTaggerTagLib = new SongTaggerTagLib();
     _horsifyDataRepo  = new HorsifyDataSqliteRepo();
     _horsifySettings  = horsifySettings;
 }
 public HorsifySongService()
 {
     _sqliteRepo = new HorsifyDataSqliteRepo();
 }
Exemple #3
0
 public DbConnection()
 {
     _horsifyDataRepo = new HorsifyDataSqliteRepo();
 }
Exemple #4
0
 public void Dispose()
 {
     _HorsifyDataSqliteRepo = null;
 }
Exemple #5
0
 public SqliteFixture()
 {
     _HorsifyDataSqliteRepo = new HorsifyDataSqliteRepo();
 }
Exemple #6
0
 /// <summary>
 /// Initializes a new instance of the <see cref="FileImport"/> class.
 /// </summary>
 /// <param name="importOptions">The import file options. MP£, WAV etc</param>
 public FileImport()
 {
     _horsifyDataRepo = new HorsifyDataSqliteRepo();
     _importOptions   = SongImportType.All;
 }