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