Ejemplo n.º 1
0
    private ProjectEntryIndex GetSubject()
    {
        var sectionMock = Mock.Of <ISection>();
        var sut         = new ProjectEntryIndex("mockId", "mockTitle", sectionMock);

        return(sut);
    }
Ejemplo n.º 2
0
    protected override IEntryIndex BuildEntryIndex(IEnumerable <PluginRecord> data)
    {
        var index = new ProjectEntryIndex(Id + "-index", "All entries", this);

        index.AddPluginRecords(data);
        return(index);
    }