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