public AvailableFunds(CurrentFunds current, AllocatedFunds allocated) { Current = current; Allocated = allocated; this.CalculateFunds(); }
public AvailableFunds() { Current = new CurrentFunds(); Allocated = new AllocatedFunds(); Amount = 0.0; }