Skip to content

Commit

Permalink
Corrige tipo de parâmetro no construtor de Venda.java
Browse files Browse the repository at this point in the history
  • Loading branch information
manoelcampos authored Jun 20, 2024
1 parent 35e3d36 commit 5e4d117
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ public class Venda {

public Venda() {/**/}

public Venda(Client cliente, LocalDate data, double valorTotal) {
public Venda(Cliente cliente, LocalDate data, double valorTotal) {
this.cliente = cliente;
this.data = data;
this.valorTotal = valorTotal;
Expand Down

0 comments on commit 5e4d117

Please sign in to comment.