Update ITermCountProcessor.cs

This commit is contained in:
mvarblow
2015-09-18 10:43:53 -04:00
parent 658a5601a5
commit 5a6ba5ddd6

View File

@@ -7,6 +7,6 @@ using Orchard.Events;
namespace Orchard.Taxonomies.Services { namespace Orchard.Taxonomies.Services {
public interface ITermCountProcessor : IEventHandler { public interface ITermCountProcessor : IEventHandler {
void Process(params int[] termPartRecordIds); void Process(IEnumerable<int> termPartRecordIds);
} }
} }