IBackgroundTask not to use IEventHandler anymore

--HG--
branch : 1.x
This commit is contained in:
Sebastien Ros
2013-02-25 15:49:26 -08:00
parent c5aa1382e7
commit f6a174a7d9

View File

@@ -1,7 +1,5 @@
using Orchard.Events;
namespace Orchard.Tasks {
public interface IBackgroundTask : IEventHandler {
namespace Orchard.Tasks {
public interface IBackgroundTask : IDependency {
void Sweep();
}
}