From 0b02ae0630a902d82a9947e80daf5b86f004b6a2 Mon Sep 17 00:00:00 2001 From: Halil ibrahim Kalkan Date: Sun, 8 Jul 2018 11:52:53 +0300 Subject: [PATCH] Fixed #350: Fix dependency helper interface naming. --- docs/Dependency-Injection.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/Dependency-Injection.md b/docs/Dependency-Injection.md index d9781926d0..15c9fe941d 100644 --- a/docs/Dependency-Injection.md +++ b/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: