Commit 3495118
Changed files (3)
src
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;
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" />
src/domain/DrillSchedule.cs → src/domain/ProductionSchedule.cs
File renamed without changes