XML exporter erweitert

This commit is contained in:
2023-04-28 15:33:22 +02:00
parent ef2c9bfe6b
commit b22b9855fa
5 changed files with 103 additions and 28 deletions

View File

@@ -7,6 +7,7 @@ using System.Linq;
using System.Text;
using System.Threading.Tasks;
using WWTech_KanalSchnittstelle.Exporter.Kandis;
using WWTech_KanalSchnittstelle.Exporter.XML;
namespace WWTech_KanalSchnittstelle.Exporter
{
@@ -18,6 +19,7 @@ namespace WWTech_KanalSchnittstelle.Exporter
switch(exportType)
{
case EExportType.KANDIS6: return new KANDIS60();
case EExportType.XML2006: return new XML2006();
default: throw new NotImplementedException();
}
}