示例#1
0
 public void UpdateInitialValue()
 {
     InitialValue = Investment.CalcPresentValue(FinalValue, (float)Interest / 100, (float)Period);
 }
示例#2
0
 public void UpdateFinalValue()
 {
     FinalValue = Investment.CalcFutureValue(InitialValue, (float)Interest / 100, (float)Period);
 }