From 46f5f93e0c9f9a6b1fb6a05c40a8654de1716e67 Mon Sep 17 00:00:00 2001 From: Simon Gockner Date: Tue, 4 Jun 2019 22:31:28 +0200 Subject: [PATCH] - add IInjectorInstaller --- .../Interfaces/IInjectorInstaller.cs | 20 +++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 LightweightIocContainer/Interfaces/IInjectorInstaller.cs diff --git a/LightweightIocContainer/Interfaces/IInjectorInstaller.cs b/LightweightIocContainer/Interfaces/IInjectorInstaller.cs new file mode 100644 index 0000000..91812d0 --- /dev/null +++ b/LightweightIocContainer/Interfaces/IInjectorInstaller.cs @@ -0,0 +1,20 @@ +// Author: simon.gockner +// Created: 2019-05-20 +// Copyright(c) 2019 SimonG. All Rights Reserved. + +using LightweightIocContainer.Interfaces.Registrations; + +namespace LightweightIocContainer.Interfaces +{ + /// + /// The base class for installers + /// + public interface IInjectorInstaller + { + /// + /// Install the needed s in the given + /// + /// The current + void Install(IInjectorContainer container); + } +} \ No newline at end of file