Exemplo n.º 1
0
 public void WorkingInterest(Percent percent)
 {
     workingInterest = percent;
 }
Exemplo n.º 2
0
 public Percent Plus(Percent other)
 {
     return new Percent(percentage + other.percentage);
 }
Exemplo n.º 3
0
 public Oppurtunity()
 {
     workingInterest = 100m.Percent();
 }
Exemplo n.º 4
0
 public bool Equals(Percent other)
 {
     if (ReferenceEquals(null, other)) return false;
       if (ReferenceEquals(this, other)) return true;
       return other.percentage == percentage;
 }