Exemplo n.º 1
0
 public AvailableFunds(CurrentFunds current, AllocatedFunds allocated)
 {
     Current   = current;
     Allocated = allocated;
     this.CalculateFunds();
 }
Exemplo n.º 2
0
 public AvailableFunds()
 {
     Current   = new CurrentFunds();
     Allocated = new AllocatedFunds();
     Amount    = 0.0;
 }