mirror of
https://github.com/OrchardCMS/Orchard.git
synced 2025-09-19 18:27:55 +08:00

--HG-- extra : convert_revision : svn%3A5ff7c347-ad56-4c35-b696-ccb81de16e03/trunk%4041639
11 lines
359 B
C#
11 lines
359 B
C#
using Orchard.Core.Common.Records;
|
|
using Orchard.Data;
|
|
using Orchard.Models.Driver;
|
|
|
|
namespace Orchard.Core.Common.Models {
|
|
public class RoutablePartProvider : ContentProvider {
|
|
public RoutablePartProvider(IRepository<RoutableRecord> repository) {
|
|
Filters.Add(new StorageFilter<RoutableRecord>(repository));
|
|
}
|
|
}
|
|
} |