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,4 +1,5 @@
using Schnittstelle.Contract;
using Schnittstelle.DWA149_2_2013;
using Schnittstelle.Import.XML.v2013.Model;
using System;
using System.Collections.Generic;
@@ -237,7 +238,6 @@ namespace Schnittstelle.Import.XML.v2013
RZustand rZustand = new RZustand();
foreach (XmlNode d in child.ChildNodes)
{
switch (d.Name)
{
case "Station":
@@ -298,6 +298,11 @@ namespace Schnittstelle.Import.XML.v2013
}
}
DWA149_2_2013Factory factory = new DWA149_2_2013Factory();
ICodeBeschreibung codedescription = factory.GetCodeBeschreibung(rZustand);
rZustand.KodeDescription = codedescription.GetBeschreibung;
//Console.WriteLine(rZustand.KodeDescription);
result.Add(rZustand);
}