From a8ba7f266fc43ebd93cab1b866bb445e2e7d4094 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Halil=20=C4=B0brahim=20Kalkan?= Date: Sun, 19 Nov 2017 14:08:06 +0300 Subject: [PATCH] Minor changes in module doc. --- docs/Module-Development-Basics.md | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/docs/Module-Development-Basics.md b/docs/Module-Development-Basics.md index 9790e8d771..dfb56b7877 100644 --- a/docs/Module-Development-Basics.md +++ b/docs/Module-Development-Basics.md @@ -18,8 +18,6 @@ public class BlogModule : AbpModule #### Configuring Dependency Injection & Other Modules -You can override virtual methods of ``AbpModule`` to add your services to dependency injection system and configure other modules. - ##### ConfigureServices Method ``ConfigureServices`` is the main method to add your services to dependency injection system and configure other modules. Example: @@ -34,7 +32,7 @@ public class BlogModule : AbpModule } ```` -You can register dependencies one by one as stated in Microsoft's documentation (TODO: link). ABP has also a **conventional dependency registration system** which allows you to register all services in your assembly automatically. ``ConfigureServices`` of most modules contain such an expression to register all services in given module: +You can register dependencies one by one as stated in Microsoft's documentation (TODO: link). ABP has also a **conventional dependency registration system** which allows you to register all services in your assembly automatically. ``ConfigureServices`` methods of most modules contain such an expression to register all services in given module: ````C# public class BlogModule : AbpModule