From 6af4280bf1774d6ce94700a14490bc27538b6b96 Mon Sep 17 00:00:00 2001 From: Simon Gockner Date: Fri, 5 Jul 2019 13:42:02 +0200 Subject: [PATCH] link to registration factory --- Simple-Usage-of-Lightweight-IOC-Container.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Simple-Usage-of-Lightweight-IOC-Container.md b/Simple-Usage-of-Lightweight-IOC-Container.md index 85225f8..508fe15 100644 --- a/Simple-Usage-of-Lightweight-IOC-Container.md +++ b/Simple-Usage-of-Lightweight-IOC-Container.md @@ -18,7 +18,7 @@ In this simple usage guide we will only take a look at the most straightforward container.Register(new DefaultRegistration(typeof(IInterface), typeof(Implementation), Lifestyle.Transient)); ``` -To make this even easier there is a `RegistrationFactory` that helps you create the `IRegistrationBase` you need: +To make this even easier there is a [`RegistrationFactory`](RegistrationFactory) that helps you create the `IRegistrationBase` you need: ```c# container.Register(RegistrationFactory.Register());