CSV factoriy hinzugefügt

This commit is contained in:
Husky
2019-05-31 22:36:43 +02:00
parent 82a16c0634
commit 78a86ca1e9
3 changed files with 38 additions and 3 deletions

View File

@@ -0,0 +1,9 @@
namespace CSVParser
{
public enum AcceptedCSVFormats
{
UVRELINING,
BLUELIGHT
}
}

View File

@@ -0,0 +1,25 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using SanShared;
namespace CSVParser
{
public static class CsvParserFactory
{
public static IReadCSVData ReadCSVFile(AcceptedCSVFormats csvFormat, string csvFile)
{
switch (csvFormat)
{
case AcceptedCSVFormats.UVRELINING:
return new UVRelining(csvFile);
case AcceptedCSVFormats.BLUELIGHT:
return new BlueLight(csvFile);
default:
throw new ArgumentOutOfRangeException(nameof(csvFormat));
}
}
}
}