1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2024-12-16 11:37:58 +02:00
Sonarr/NzbDrone.Core/Datastore/BasicRepository.cs

47 lines
1.1 KiB
C#
Raw Normal View History

2013-02-13 04:25:32 +03:00
using System.Collections.Generic;
2013-02-05 07:07:07 +03:00
using System.Linq;
namespace NzbDrone.Core.Datastore
{
public interface IBasicRepository<TModel>
{
List<TModel> All();
TModel Get(int id);
TModel Add(TModel model);
void Delete(int id);
2013-02-05 07:07:07 +03:00
}
2013-02-13 04:25:32 +03:00
public class BasicRepository<TModel> : IBasicRepository<TModel> where TModel : BaseRepositoryModel, new()
2013-02-05 07:07:07 +03:00
{
2013-02-17 04:52:40 +03:00
public BasicRepository(IObjectDatabase objectDatabase)
2013-02-05 07:07:07 +03:00
{
2013-02-17 04:52:40 +03:00
ObjectDatabase = objectDatabase;
2013-02-05 07:07:07 +03:00
}
2013-02-17 04:52:40 +03:00
protected IObjectDatabase ObjectDatabase { get; private set; }
2013-02-05 07:07:07 +03:00
protected IEnumerable<TModel> Queryable { get { return ObjectDatabase.AsQueryable<TModel>(); } }
2013-02-05 07:07:07 +03:00
public List<TModel> All()
{
return Queryable.ToList();
2013-02-05 07:07:07 +03:00
}
public TModel Get(int id)
2013-02-05 07:07:07 +03:00
{
return Queryable.Single(c => c.OID == id);
2013-02-05 07:07:07 +03:00
}
public TModel Add(TModel model)
2013-02-05 07:07:07 +03:00
{
2013-02-17 04:52:40 +03:00
return ObjectDatabase.Insert(model);
2013-02-05 07:07:07 +03:00
}
public void Delete(int id)
2013-02-05 07:07:07 +03:00
{
var itemToDelete = Get(id);
2013-02-17 04:52:40 +03:00
ObjectDatabase.Delete(itemToDelete);
2013-02-05 07:07:07 +03:00
}
}
}