IDbConnector.cs 213 B

12345678910
  1. using System.Data;
  2. using System.Threading.Tasks;
  3. namespace MediaBrowser.Server.Implementations.Persistence
  4. {
  5. public interface IDbConnector
  6. {
  7. Task<IDbConnection> Connect(string dbPath);
  8. }
  9. }