2016-05-01 21:48:37 +00:00
|
|
|
|
using System.Data;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace MediaBrowser.Server.Implementations.Persistence
|
|
|
|
|
{
|
|
|
|
|
public interface IDbConnector
|
|
|
|
|
{
|
2016-06-10 16:45:04 +00:00
|
|
|
|
Task<IDbConnection> Connect(string dbPath, int? cacheSize = null);
|
2016-05-01 21:48:37 +00:00
|
|
|
|
}
|
|
|
|
|
}
|