Index: DamEngine/trunk/src/Deltares.DamEngine.Data/General/DamProjectData.cs =================================================================== diff -u -r929 -r962 --- DamEngine/trunk/src/Deltares.DamEngine.Data/General/DamProjectData.cs (.../DamProjectData.cs) (revision 929) +++ DamEngine/trunk/src/Deltares.DamEngine.Data/General/DamProjectData.cs (.../DamProjectData.cs) (revision 962) @@ -24,7 +24,6 @@ using System.Linq; using Deltares.DamEngine.Data.Design; using Deltares.DamEngine.Data.General.Results; -using Deltares.DamEngine.Data.General.SchematizationFactor; using Deltares.DamEngine.Data.General.Sensors; using Deltares.DamEngine.Data.RWScenarios; using Deltares.DamEngine.Data.Standard.Calculation; @@ -46,7 +45,6 @@ private DamProjectType damProjectType = DamProjectType.Operational; private ProgramType programType = ProgramType.MStab; private List jobs = new List(); - private SchematizationFactorData schematizationFactorData = new SchematizationFactorData(); private List calculations = null; // will be created and initialized in property private List designCalculations = null; private List schematizationFactors = null; @@ -72,26 +70,13 @@ public static string ProjectMap = ""; - public static string OldProjectWorkingPath - { - get; - set; - } - // TODO: FM this is failure mechanism specific code and should be moved to ..\KernelWrappers public static string MStabExePath { get; set; } - // TODO: FM this is failure mechanism specific code and should be moved to ..\KernelWrappers - public static string SlopeWExePath - { - get; - set; - } - public virtual string Name { get { return String.Format(LocalizationManager.GetTranslatedText(this, "WaterBoard")); } @@ -320,15 +305,6 @@ } } - public SchematizationFactorData SchematizationFactorData - { - get { return schematizationFactorData; } - set - { - schematizationFactorData = value; - } - } - public CalculationResult Validate() { try