Kürzelbeschreibung hinzugefügt

This commit is contained in:
Damian Wessels
2024-08-23 16:18:25 +02:00
parent 366b9ad4d6
commit 6987f8d499
41 changed files with 419 additions and 83 deletions

View File

@@ -1,9 +1,16 @@
namespace Schnittstelle.DWA149_2_2013
using Schnittstelle.Import.XML.v2013.Model;
namespace Schnittstelle.DWA149_2_2013
{
class BDD : CodeBeschreibung
{
public BDD() : base("Wasserspiegel")
public BDD(RZustand kuerzel) : base("Wasserspiegel", kuerzel)
{
CH1.Add("A", "klar (Sohle sichtbar)");
CH1.Add("B", "Anwendung nicht fortgeführt");
CH1.Add("C", "trüb");
CH1.Add("D", "gefärbt");
CH1.Add("E", "trüb und gefärbt");
}
}
}