Index: DamEngine/trunk/src/Deltares.DamEngine.Data/General/Location.cs
===================================================================
diff -u -r2131 -r2166
--- DamEngine/trunk/src/Deltares.DamEngine.Data/General/Location.cs (.../Location.cs) (revision 2131)
+++ DamEngine/trunk/src/Deltares.DamEngine.Data/General/Location.cs (.../Location.cs) (revision 2166)
@@ -34,15 +34,6 @@
{
///
- /// MainType for DAM, determines type of calculations are to be performed
- ///
- public enum DamType
- {
- Primary,
- Regional
- }
-
- ///
/// Types of project for DAM
///
public enum DamProjectType
@@ -97,7 +88,6 @@
private readonly List scenarios = new List();
private ModelParametersForPlLines modelParametersForPlLines = new ModelParametersForPlLines();
- private DamType damType = DamType.Primary;
private string dikeEmbankmentMaterial = "";
private double dikeTableHeight;
@@ -395,24 +385,6 @@
}
///
- /// Gets or sets the type of the dam.
- ///
- ///
- /// The type of the dam.
- ///
- public DamType DamType
- {
- get
- {
- return damType;
- }
- set
- {
- damType = value;
- }
- }
-
- ///
/// Gets or sets the soil list.
///
///