Ejemplo n.º 1
0
 public TagImport(IHorsifySettings horsifySettings)
 {
     _songTagger       = new SongTaggerId3();
     _songTaggerTagLib = new SongTaggerTagLib();
     _horsifyDataRepo  = new HorsifyDataSqliteRepo();
     _horsifySettings  = horsifySettings;
 }
Ejemplo n.º 2
0
 public HorsifySongService()
 {
     _sqliteRepo = new HorsifyDataSqliteRepo();
 }
Ejemplo n.º 3
0
 public DbConnection()
 {
     _horsifyDataRepo = new HorsifyDataSqliteRepo();
 }
Ejemplo n.º 4
0
 public void Dispose()
 {
     _HorsifyDataSqliteRepo = null;
 }
Ejemplo n.º 5
0
 public SqliteFixture()
 {
     _HorsifyDataSqliteRepo = new HorsifyDataSqliteRepo();
 }
Ejemplo n.º 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;
 }