Skip to content

Commit 50c5129

Browse files
committed
feat: add TaxCalculator interface for configurable tax calculation
1 parent 958c0c1 commit 50c5129

1 file changed

Lines changed: 8 additions & 0 deletions

File tree

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
package com.otavio.jakarta.cdi.app.configuration;
2+
3+
import java.math.BigDecimal;
4+
5+
public interface TaxCalculator {
6+
7+
BigDecimal calculate(BigDecimal amount);
8+
}

0 commit comments

Comments
 (0)