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