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