Inspektionsrichtung wird nun nicht mehr in Bemerkung geschrieben sondern in einem extra Feld

This commit is contained in:
Husky
2018-07-21 21:39:43 +02:00
parent 753ac7051d
commit cf0124cafd
2 changed files with 5 additions and 1 deletions

View File

@@ -75,6 +75,10 @@ namespace KlassenBIB
/// </summary>
public SanierungCollection Sanierung { get;set; }
/// <summary>
/// In welcher Richtung wurde Inspiziert
/// </summary>
public string Inspektionsrichtung { get; set; }
/// <summary>
///
/// </summary>
public Inspektionsobjekt()

View File

@@ -163,7 +163,7 @@ namespace SchnittstelleImporter
inspektionsobjekt.Haltungslaenge = Convert.ToDouble(src.OptischeInspektion.Rohrleitung.Inspektionslaenge);
inspektionsobjekt.VonPunkt = src.OptischeInspektion.Rohrleitung.Grunddaten.KnotenZulauf;
inspektionsobjekt.BisPunkt = src.OptischeInspektion.Rohrleitung.Grunddaten.KnotenAblauf;
inspektionsobjekt.Bemerkung = src.OptischeInspektion.Rohrleitung.Inspektionsrichtung;
inspektionsobjekt.Inspektionsrichtung = src.OptischeInspektion.Rohrleitung.Inspektionsrichtung;
foreach(RZustand zustand in src.OptischeInspektion.Rohrleitung.Zustaende)