You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Lidarr/NzbDrone.Core/Datastore/BasicRepository.cs

47 lines
1.2 KiB

using System.Collections.Generic;
using System.Linq;
namespace NzbDrone.Core.Datastore
{
public interface IBasicRepository<TModel>
{
List<TModel> All();
TModel Get(int rootFolderId);
TModel Add(TModel rootFolder);
void Delete(int rootFolderId);
}
public class BasicRepository<TModel> : IBasicRepository<TModel> where TModel : BaseRepositoryModel, new()
{
12 years ago
public BasicRepository(IObjectDatabase objectDatabase)
{
12 years ago
ObjectDatabase = objectDatabase;
}
12 years ago
protected IObjectDatabase ObjectDatabase { get; private set; }
protected IEnumerable<TModel> Queryable { get { return ObjectDatabase.AsQueryable<TModel>(); } }
public List<TModel> All()
{
return Queryable.ToList();
}
public TModel Get(int id)
{
return Queryable.Single(c => c.OID == id);
}
public TModel Add(TModel model)
{
12 years ago
return ObjectDatabase.Insert(model);
}
public void Delete(int id)
{
var itemToDelete = Get(id);
12 years ago
ObjectDatabase.Delete(itemToDelete);
}
}
}