Advertisement
danimaaan

Sem regra de desconto

Apr 16th, 2021
782
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.30 KB | None | 0 0
  1. package br.com.alura.desconto;
  2.  
  3. import java.math.BigDecimal;
  4.  
  5. import br.com.alura.orcamento.Orcamento;
  6.  
  7. public class SemDesconto extends Desconto {
  8.  
  9.     public SemDesconto() {
  10.         super(null);
  11.     }
  12.  
  13.     @Override
  14.     public BigDecimal calcular(Orcamento orcamento) {
  15.         return BigDecimal.ZERO;
  16.     }  
  17.  
  18. }
  19.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement