namespace NzbDrone.Core.Datastore { public interface IReadModels where T : ModelBase { T All(); T Get(int id); } }