class Negociacao {
constructor(){
this.data = new Date();
this.quantidade = 1;
this.valor = 0;
}
constructor(data, quantidade, valor){
this.data = data;
this.quantidade = quantidade;
this.valor = valor;
}
}