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

45 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 rootFolderId);
2013-02-05 07:07:07 +03:00
TModel Add(TModel rootFolder);
void Delete(int rootFolderId);
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
{
public BasicRepository(EloqueraDb eloqueraDb)
{
EloqueraDb = eloqueraDb;
}
protected EloqueraDb EloqueraDb { get; private set; }
public List<TModel> All()
{
return EloqueraDb.AsQueryable<TModel>().ToList();
}
public TModel Get(int id)
2013-02-05 07:07:07 +03:00
{
return EloqueraDb.AsQueryable<TModel>().Single(c => c.Id == id);
2013-02-05 07:07:07 +03:00
}
public TModel Add(TModel model)
2013-02-05 07:07:07 +03:00
{
return EloqueraDb.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-05 07:07:07 +03:00
EloqueraDb.Delete(itemToDelete);
}
}
}