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