Exemplo n.º 1
0
 public ProgressiveTaxRate(
     Money lowerBound,
     Money upperBound,
     decimal rate,
     ProgressiveTaxRateLevel progressiveTaxRateLevel)
 {
     LowerBound = lowerBound;
     UpperBound = upperBound;
     Rate       = rate / 100;
     ProgressiveTaxRateLevel = progressiveTaxRateLevel;
 }
Exemplo n.º 2
0
 public ProgressiveTaxRateResponse(
     decimal lowerBound,
     decimal upperBound,
     ProgressiveTaxRateLevel taxRateLevel,
     decimal rate)
 {
     LowerBound   = lowerBound;
     UpperBound   = upperBound;
     TaxRateLevel = taxRateLevel;
     Rate         = rate * 100;
 }