Bewertungssystem angefangen

This commit is contained in:
2023-09-11 20:39:23 +02:00
parent f41cfff5c0
commit 560ac6246b
32 changed files with 9504 additions and 51 deletions

View File

@@ -11,14 +11,8 @@ namespace dcnsanplanung.shared.Model
public Guid Ref_Projekt_Guid;
public string Objektbezeichnung { get; set; } = "";
public uint Bewertungklasse { get; set; }
public uint DN { get; set; }
public string Material { get; set; } = "";
public List<Schaden> Kodierungen = new List<Schaden>();
}
public class Schaden : DBObjekt
{
public Guid Ref_Haltung_Guid;
public decimal Entfernung;
public string Kodierung = "";
public uint Schadensklasse;
}
}

View File

@@ -0,0 +1,24 @@
namespace dcnsanplanung.shared.Model
{
public class Schaden : DBObjekt
{
public Guid Ref_Haltung_Guid { get; set; }
public decimal Entfernung { get; set; }
public string Hauptcode { get; set; } = string.Empty;
public string CH1 { get; set; } = string.Empty;
public string CH2 { get; set; } = string.Empty;
public string Q1 { get; set; } = string.Empty;
public string Q2 { get; set; } = string.Empty;
public uint Schadensklasse { get; set; }
public uint KD { get; set; }
public uint KS { get; set; }
public uint KB { get; set; }
public List<Sanierungsvorgabe> Sanierungsvorgaben { get; set; }
}
public class Sanierungsvorgabe
{
public string Vorgabe { get; set; } = "";
}
}