Small changes to model/interfaces

Cropping some data
Adding an Update method, and renaming to ITopologyDescriptorManager

--HG--
branch : dev
This commit is contained in:
Louis DeJardin
2010-04-15 01:16:13 -07:00
parent 122ea0b629
commit aee044781c
5 changed files with 37 additions and 30 deletions

View File

@@ -6,9 +6,13 @@ using Orchard.Environment.Topology;
using Orchard.Environment.Topology.Models;
namespace Orchard.Core.Settings.Services {
public class TopologyDescriptorProvider : ITopologyDescriptorProvider {
public class TopologyDescriptorManager : ITopologyDescriptorManager {
public ShellTopologyDescriptor GetTopologyDescriptor() {
throw new NotImplementedException();
}
public void UpdateTopologyDescriptor(int priorSerialNumber, IEnumerable<TopologyFeature> enabledFeatures, IEnumerable<TopologyParameter> parameters) {
throw new NotImplementedException();
}
}
}