Objekt edit form angefangen

This commit is contained in:
Husky
2018-06-10 12:02:40 +02:00
parent 134ddca9e3
commit faf5dcc34e
10 changed files with 741 additions and 10 deletions

View File

@@ -9,6 +9,7 @@ namespace KlassenBIB
public abstract class Sanierung
{
Guid guid;
string projektnummer;
decimal tempAusen;
decimal tempKanal;
string wetter;
@@ -21,6 +22,7 @@ namespace KlassenBIB
Inspektionsobjekt inspektionsObjekt;
public Guid Guid { get => guid; set => guid = value; }
public string ProjektNummer { get => projektnummer; set => projektnummer = value; }
public decimal TempAusen { get => tempAusen; set => tempAusen = value; }
public decimal TempKanal { get => tempKanal; set => tempKanal = value; }
public string Wetter { get => wetter; set => wetter = value; }