From 06f6a4381ee573629a02f20dd5f6bc48e72cecec Mon Sep 17 00:00:00 2001 From: Simon G Date: Sat, 19 Sep 2020 21:21:30 +0200 Subject: [PATCH] #25: add IDataHandlerFactory --- GBase/DataHandling/Factories/IDataHandlerFactory.cs | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 GBase/DataHandling/Factories/IDataHandlerFactory.cs diff --git a/GBase/DataHandling/Factories/IDataHandlerFactory.cs b/GBase/DataHandling/Factories/IDataHandlerFactory.cs new file mode 100644 index 0000000..d2b8515 --- /dev/null +++ b/GBase/DataHandling/Factories/IDataHandlerFactory.cs @@ -0,0 +1,13 @@ +// Author: Simon Gockner +// Created: 2020-09-19 +// Copyright(c) 2020 SimonG. All Rights Reserved. + +using GBase.Interfaces.DataHandling; + +namespace GBase.DataHandling.Factories +{ + public interface IDataHandlerFactory + { + IDataHandler Create(); //TODO: Add correct parameters + } +} \ No newline at end of file