public void Registrar(int vendedorId, int produtoId, int quantidade, double valortotal) { var venda = new Venda(vendedorId, produtoId, quantidade, valortotal); venda.ValidaModelo(); _repositorio.Cadastro(venda); }