2013-03-25 04:51:32 +01:00
|
|
|
|
using System;
|
|
|
|
|
using Marr.Data;
|
|
|
|
|
|
|
|
|
|
namespace NzbDrone.Core.Datastore
|
|
|
|
|
{
|
|
|
|
|
public interface IDatabase
|
|
|
|
|
{
|
2013-07-16 02:45:49 +02:00
|
|
|
|
IDataMapper GetDataMapper();
|
2013-03-25 04:51:32 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public class Database : IDatabase
|
|
|
|
|
{
|
2013-05-11 22:06:57 +02:00
|
|
|
|
private readonly Func<IDataMapper> _dataMapperFactory;
|
2013-03-25 04:51:32 +01:00
|
|
|
|
|
2013-05-11 22:06:57 +02:00
|
|
|
|
public Database(Func<IDataMapper> dataMapperFactory)
|
2013-03-25 04:51:32 +01:00
|
|
|
|
{
|
2013-05-11 22:06:57 +02:00
|
|
|
|
_dataMapperFactory = dataMapperFactory;
|
2013-03-25 04:51:32 +01:00
|
|
|
|
}
|
|
|
|
|
|
2013-07-16 02:45:49 +02:00
|
|
|
|
public IDataMapper GetDataMapper()
|
2013-05-11 22:06:57 +02:00
|
|
|
|
{
|
2013-07-16 02:45:49 +02:00
|
|
|
|
return _dataMapperFactory();
|
2013-05-11 22:06:57 +02:00
|
|
|
|
}
|
2013-03-25 04:51:32 +01:00
|
|
|
|
}
|
|
|
|
|
}
|