26 lines
633 B
C#
26 lines
633 B
C#
using SewerStammGen.Shared.Domain;
|
|
using SewerStammGen.Shared.Enum;
|
|
using Shared.Contracts;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using WWTech_KanalSchnittstelle.Exporter.Kandis;
|
|
|
|
namespace WWTech_KanalSchnittstelle.Exporter
|
|
{
|
|
|
|
public static class ExporterFactory
|
|
{
|
|
public static IExport Export(EExportType exportType)
|
|
{
|
|
switch(exportType)
|
|
{
|
|
case EExportType.KANDIS6: return new KANDIS60();
|
|
default: throw new NotImplementedException();
|
|
}
|
|
}
|
|
}
|
|
}
|