function EntBusca() {
	
	this.registroInicial; // int
	this.quantidadeRegistros; // int

	this.getRegistroInicial = function() {
		return this.registroInicial;
	}

	this.setRegistroInicial = function(valor) {
		this.registroInicial = valor;
	}

	this.getQuantidadeRegistros = function() {
		return this.quantidadeRegistros;
	}

	this.setQuantidadeRegistros = function(valor) {
		this.quantidadeRegistros = valor;
	}
	 
}
EntBusca.prototype = new EntPrincipal;