public void WorkingInterest(Percent percent) { workingInterest = percent; }
public Percent Plus(Percent other) { return new Percent(percentage + other.percentage); }
public Oppurtunity() { workingInterest = 100m.Percent(); }
public bool Equals(Percent other) { if (ReferenceEquals(null, other)) return false; if (ReferenceEquals(this, other)) return true; return other.percentage == percentage; }