From 432f61977127902b131484467521341fa8f0c8a8 Mon Sep 17 00:00:00 2001 From: Simon Gockner Date: Wed, 12 Feb 2020 16:23:52 +0100 Subject: [PATCH] #9: add gBase installer --- GBase/Installers/GBaseInstaller.cs | 31 ++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 GBase/Installers/GBaseInstaller.cs diff --git a/GBase/Installers/GBaseInstaller.cs b/GBase/Installers/GBaseInstaller.cs new file mode 100644 index 0000000..a7258a1 --- /dev/null +++ b/GBase/Installers/GBaseInstaller.cs @@ -0,0 +1,31 @@ +// Author: Gockner, Simon +// Created: 2020-02-12 +// Copyright(c) 2020 SimonG. All Rights Reserved. + + +using GBase.Factories; +using GBase.Interfaces; +using LightweightIocContainer.Interfaces; +using LightweightIocContainer.Interfaces.Installers; + +namespace GBase.Installers +{ + /// + /// for the GBase + /// + public class GBaseInstaller : IIocInstaller + { + /// + public void Install(IIocContainer container) + { + container.Register(); + container.Register(); + container.Register(); + + //factories + container.RegisterFactory(); + container.RegisterFactory(); + container.RegisterFactory(); + } + } +} \ No newline at end of file