Protokolll inhalt erweitert

This commit is contained in:
Husky
2018-07-14 15:57:50 +02:00
parent 2ee98ea823
commit 85607e926c
12 changed files with 134 additions and 90 deletions

View File

@@ -8,6 +8,6 @@ namespace SanShared
{
public interface ITemperature
{
double GetTemperatur();
double GetTemperatur(out string message);
}
}

View File

@@ -46,6 +46,7 @@
<Compile Include="IMakeProtokol.cs" />
<Compile Include="ITemperature.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
<Compile Include="UVcsvStrukture.cs" />
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
</Project>

View File

@@ -0,0 +1,19 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace SanShared
{
public class UVcsvStrukture
{
DateTime zeitstempel;
double temperatur;
double druck;
public DateTime Zeitstempel { get => zeitstempel; set => zeitstempel = value; }
public double Temperatur { get => temperatur; set => temperatur = value; }
public double Druck { get => druck; set => druck = value; }
}
}