CVS struktur erweitert

This commit is contained in:
Husky
2019-05-31 16:23:05 +02:00
parent 64d5932bde
commit 0c7724e5b7
10 changed files with 239 additions and 3 deletions

24
SanShared/IReadCSVData.cs Normal file
View File

@@ -0,0 +1,24 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace SanShared
{
/// <summary>
///
/// </summary>
public interface IReadCSVData
{
/// <summary>
///
/// </summary>
/// <returns></returns>
List<UVcsvStrukture> ReadCSVStrukture();
/// <summary>
///
/// </summary>
string[] Input { get; }
}
}

View File

@@ -48,6 +48,7 @@
<Compile Include="ILanguage.cs" />
<Compile Include="IMakeProtokol.cs" />
<Compile Include="IProjekt.cs" />
<Compile Include="IReadCSVData.cs" />
<Compile Include="ITemperature.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
<Compile Include="UVcsvStrukture.cs" />

View File

@@ -30,6 +30,6 @@ namespace SanShared
/// <summary>
/// Geschwindigkeit vom Eintrag
/// </summary>
public double Geschwindigkeit { get => geschwindigkeit; set => geschwindigkeit = value; }
public int Geschwindigkeit { get => geschwindigkeit; set => geschwindigkeit = value; }
}
}