aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Server.Implementations/Persistence/IDbConnector.cs
blob: 985d79a0accfe81353023e4eddd4ca721777e1eb (plain)
1
2
3
4
5
6
7
8
9
10
11
using System.Data;
using System.Threading.Tasks;

namespace MediaBrowser.Server.Implementations.Persistence
{
    public interface IDbConnector
    {
        Task<IDbConnection> Connect(string dbPath);
        void BindSimilarityScoreFunction(IDbConnection connection);
    }
}