Refactoring

This commit is contained in:
Husky
2021-02-23 21:20:20 +01:00
parent 48d7f66a55
commit 7658dbdedd
12 changed files with 123 additions and 105 deletions

View File

@@ -1,5 +1,8 @@
<Project Sdk="Microsoft.NET.Sdk">
<ItemGroup>
<ProjectReference Include="..\Models\Models.csproj" />
</ItemGroup>
<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
</PropertyGroup>

View File

@@ -1,12 +0,0 @@
using System;
namespace DPGetDataContract
{
public enum EDataType {
LEERPHASE = 0, // 004
BEFÜLLPHASE = 1, // 000
BERUHUNGSZEIT = 2, // 001
PRÜFUNGSPHASE = 3, // 002
ENDEPRÜFUNGMARKER = 4 // 003
}
}

View File

@@ -1,12 +0,0 @@
using System;
namespace DPGetDataContract
{
public class GetDataStructure
{
public int Eintrag;
public DateTime Datum;
public string Druck;
public EDataType Methode;
}
}

View File

@@ -1,8 +1,8 @@
using System;
using System.Collections.Generic;
using Models;
namespace DPGetDataContract {
public interface IDPGetDataContract {
List<GetDataStructure> ReadMessureList {get;}
List<MeasureData> ReadMessureList {get;}
}
}