Advertisement
danimaaan

ICMS

Apr 16th, 2021
841
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.24 KB | None | 0 0
  1. package br.com.alura.orcamento;
  2.  
  3. import java.math.BigDecimal;
  4.  
  5. public class ICMS implements Imposto {
  6.  
  7.     @Override
  8.     public BigDecimal calcular(Orcamento orcamento) {
  9.         return orcamento.getValor().multiply(new BigDecimal("0.1"));
  10.     }
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement