Index: dam engine/trunk/src/Deltares.DamEngine.Data/General/LocationJob.cs =================================================================== diff -u -r406 -r435 --- dam engine/trunk/src/Deltares.DamEngine.Data/General/LocationJob.cs (.../LocationJob.cs) (revision 406) +++ dam engine/trunk/src/Deltares.DamEngine.Data/General/LocationJob.cs (.../LocationJob.cs) (revision 435) @@ -22,7 +22,6 @@ using System; using System.Collections.Generic; using System.Linq; -using System.Xml.Serialization; using Deltares.DamEngine.Data.Design; using Deltares.DamEngine.Data.General.Results; using Deltares.DamEngine.Data.General.TimeSeries; @@ -65,7 +64,6 @@ public double XRd { get { return this.Location == null ? 0 : this.Location.XRd; } } public double YRd { get { return this.Location == null ? 0 : this.Location.YRd; } } - [XmlIgnore] [Validate] public Location Location { @@ -276,7 +274,6 @@ return res; } - [XmlIgnore] public double SafetyFactor { get @@ -345,7 +342,6 @@ } } - [XmlIgnore] public double FailureProbability { get @@ -369,7 +365,6 @@ } } - [XmlIgnore] public double RequiredProbability { get @@ -411,7 +406,6 @@ return false; } - [XmlIgnore] public JobResult Result { get @@ -431,21 +425,18 @@ } } - [XmlIgnore] public static DateTime CurrentTime { get { return currentTime; } set { currentTime = value; } } - [XmlIgnore] public static DamProjectType DamProjectType { get { return damProjectType; } set { damProjectType = value; } } - [XmlIgnore] public static ProbabilisticType ProbabilisticType { get { return probabilisticType; }