Documentation

--HG--
branch : dev
This commit is contained in:
Renaud Paquay
2010-07-11 13:35:05 -07:00
parent 9413ef2984
commit 1c22285c3a

View File

@@ -2,12 +2,21 @@
using Orchard.Logging;
namespace Orchard {
/// <summary>
/// Base interface for services that are instantiated per unit of work (i.e. web request).
/// </summary>
public interface IDependency {
}
/// <summary>
/// Base interface for services that are instantiated per shell/tenant.
/// </summary>
public interface ISingletonDependency : IDependency {
}
/// <summary>
/// Base interface for services that are instantiated per usage.
/// </summary>
public interface ITransientDependency : IDependency {
}