function EntConfVendas() {
	
	this.setId("EntConfVendas");
	
	this.resumoCC; // EntRegistro
	this.resumoPlanoDeContas; // EntRegistro
	this.resumoContaBancaria; // EntRegistro
	this.resumoCliente; //EntRegistro
	this.resumoVendedor; // EntRegistro
	
	
	this.toString = function() {
		return "entConfVendas";
	}

	this.getResumoCC = function() {
		return this.resumoCC;
	}

	this.setResumoCC = function(oResumoCC) {
		this.resumoCC = oResumoCC;
	}

	this.getResumoPlanoDeContas = function() {
		return this.resumoPlanoDeContas;
	}

	this.setResumoPlanoDeContas = function(oResumoPlanoDeContas) {
		this.resumoPlanoDeContas = oResumoPlanoDeContas;
	}

	this.getResumoContaBancaria = function() {
		return this.resumoContaBancaria;
	}

	this.setResumoContaBancaria = function(oResumoContaBancaria) {
		this.resumoContaBancaria = oResumoContaBancaria;
	}
	
	this.getResumoCliente = function() {
		return this.resumoCliente;
	}

	this.setResumoCliente = function(oResumoCliente) {
		this.resumoCliente = oResumoCliente;
	}

	this.getResumoVendedor = function() {
		return this.resumoVendedor;
	}

	this.setResumoVendedor = function(oResumoVendedor) {
		this.resumoVendedor = oResumoVendedor;
	}
	
}
EntConfVendas.prototype = new EntPrincipal;