-a
This commit is contained in:
@@ -3,6 +3,7 @@ using System.Collections;
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace Models {
|
||||
[Serializable]
|
||||
public class Auftraggeber {
|
||||
public int Id {get;set;}
|
||||
public string Name {get;set;}
|
||||
|
||||
@@ -3,6 +3,7 @@ using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
|
||||
namespace Models {
|
||||
[Serializable]
|
||||
public class Bauvorhaben {
|
||||
public Auftraggeber Auftraggeber { get; set; }
|
||||
public int Id { get; set; }
|
||||
|
||||
@@ -1,10 +1,11 @@
|
||||
namespace Models
|
||||
{
|
||||
public enum EMeasureType {
|
||||
LEERPHASE = 0, // 004
|
||||
BEFÜLLPHASE = 1, // 000
|
||||
BERUHUNGSZEIT = 2, // 001
|
||||
PRÜFUNGSPHASE = 3, // 002
|
||||
ENDEPRÜFUNGMARKER = 4 // 003
|
||||
BEFÜLLPHASE = 0, // 000
|
||||
BERUHUNGSZEIT = 1, // 001
|
||||
PRÜFUNGSPHASE = 2, // 002
|
||||
ENDE = 3, // 003
|
||||
ABLUFT = 4,
|
||||
|
||||
}
|
||||
}
|
||||
@@ -3,6 +3,7 @@ using System.Collections.Generic;
|
||||
|
||||
namespace Models
|
||||
{
|
||||
[Serializable]
|
||||
public class Inspektionsobjekt
|
||||
{
|
||||
public int Id { get; set; }
|
||||
|
||||
@@ -2,6 +2,7 @@ using System;
|
||||
|
||||
namespace Models
|
||||
{
|
||||
[Serializable]
|
||||
public class MeasureData {
|
||||
public int Id { get; set; }
|
||||
public int EintragID {get;set;}
|
||||
|
||||
@@ -3,6 +3,7 @@ using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
|
||||
namespace Models {
|
||||
[Serializable]
|
||||
public class PressureTest {
|
||||
|
||||
bool bestanden;
|
||||
|
||||
Reference in New Issue
Block a user