예제 #1
0
 public Money <TCurrency> Normalize(IRoundingAdjuster adjuster)
 {
     if (IsNormalized)
     {
         return(this);
     }
     return(MoneyFactory.FromMajor <TCurrency>(Amount, adjuster));
 }
예제 #2
0
 public Money <TCurrency> Normalize(MidpointRounding mode)
 {
     if (IsNormalized)
     {
         return(this);
     }
     return(MoneyFactory.FromMajor <TCurrency>(Amount, mode));
 }