mirror of
https://github.com/Radarr/Radarr.git
synced 2024-11-04 10:02:40 +01:00
28 lines
551 B
C#
28 lines
551 B
C#
using System;
|
|
using Marr.Data;
|
|
|
|
namespace NzbDrone.Core.Datastore
|
|
{
|
|
public interface IDatabase
|
|
{
|
|
IDataMapper DataMapper { get; }
|
|
}
|
|
|
|
public class Database : IDatabase
|
|
{
|
|
private readonly Func<IDataMapper> _dataMapperFactory;
|
|
|
|
public Database(Func<IDataMapper> dataMapperFactory)
|
|
{
|
|
_dataMapperFactory = dataMapperFactory;
|
|
}
|
|
|
|
public IDataMapper DataMapper
|
|
{
|
|
get
|
|
{
|
|
return _dataMapperFactory();
|
|
}
|
|
}
|
|
}
|
|
} |