Browse Source

Fixed #350: Fix dependency helper interface naming.

pull/395/head
Halil ibrahim Kalkan 8 years ago
parent
commit
0b02ae0630
  1. 4
      docs/Dependency-Injection.md

4
docs/Dependency-Injection.md

@ -58,8 +58,8 @@ public class BlogPostAppService : ApplicationService
If you implement these interfaces, your class is registered to dependency injection automatically:
* ``ITransient`` to register with transient lifetime.
* ``ISingleton`` to register with singleton lifetime.
* ``ITransientDependency`` to register with transient lifetime.
* ``ISingletonDependency`` to register with singleton lifetime.
* ``IScopedDependency`` to register with scoped lifetime.
Example:

Loading…
Cancel
Save