diff options
| author | mo k <mo@mokhan.ca> | 2012-04-24 11:50:06 -0600 |
|---|---|---|
| committer | mo k <mo@mokhan.ca> | 2012-04-24 11:50:06 -0600 |
| commit | 34951186809838792232f5c204529224f2a4becd (patch) | |
| tree | 0157fc5afc39aba646e1a7650fbe725d277cf7bd | |
| parent | c43b7cf90972e2e962a629a928d2761956dd7e6f (diff) | |
rename DrillSchedule to ProductionSchedule.
| -rw-r--r-- | src/domain/BOED.cs | 20 | ||||
| -rw-r--r-- | src/domain/ProductionSchedule.cs (renamed from src/domain/DrillSchedule.cs) | 0 | ||||
| -rwxr-xr-x | src/domain/domain.csproj | 2 |
3 files changed, 1 insertions, 21 deletions
diff --git a/src/domain/BOED.cs b/src/domain/BOED.cs index 4d2f089..e9aed73 100644 --- a/src/domain/BOED.cs +++ b/src/domain/BOED.cs @@ -7,26 +7,6 @@ namespace domain return ( units is MCF ) ? amount / 6: amount; } - public bool Equals(BOED other) - { - if (ReferenceEquals(null, other)) return false; - if (ReferenceEquals(this, other)) return true; - return true; - } - - public override bool Equals(object obj) - { - if (ReferenceEquals(null, obj)) return false; - if (ReferenceEquals(this, obj)) return true; - if (obj.GetType() != typeof (BOED)) return false; - return Equals((BOED) obj); - } - - public override int GetHashCode() - { - return (name != null ? name.GetHashCode() : 0); - } - public override string ToString() { return name; diff --git a/src/domain/DrillSchedule.cs b/src/domain/ProductionSchedule.cs index 7126064..7126064 100644 --- a/src/domain/DrillSchedule.cs +++ b/src/domain/ProductionSchedule.cs diff --git a/src/domain/domain.csproj b/src/domain/domain.csproj index 721b771..21727d3 100755 --- a/src/domain/domain.csproj +++ b/src/domain/domain.csproj @@ -47,7 +47,6 @@ <Compile Include="Commodity.cs" />
<Compile Include="CommoditySplits.cs" />
<Compile Include="DeclineCurve.cs" />
- <Compile Include="DrillSchedule.cs" />
<Compile Include="EstimatedNetProductionFor.cs" />
<Compile Include="GasPlant.cs" />
<Compile Include="MCF.cs" />
@@ -56,6 +55,7 @@ <Compile Include="Oppurtunity.cs" />
<Compile Include="Percent.cs" />
<Compile Include="Production.cs" />
+ <Compile Include="ProductionSchedule.cs" />
<Compile Include="Quantity.cs" />
<Compile Include="Range.cs" />
<Compile Include="Summation.cs" />
|
