function EntConfAlarmeEstoque() {
	
	this.setId("EntConfAlarmeEstoque");
	
	this.limitesProdutos = new Array(); //EntLimiteProduto
	this.colaboradores = new Array(); //EntColaboradorResumo
	
	this.toString = function() {
		return "entConfAlarmeEstoque";
	}
	
	this.getLimitesProdutos = function() {
		return this.limitesProdutos;
	}

	this.setLimitesProdutos = function(aLimitesProdutos) {
		this.limitesProdutos = aLimitesProdutos;
	}
	
	this.getColaboradores = function() {
		return this.colaboradores;
	}

	this.setColaboradores = function(aColaboradores) {
		this.colaboradores = aColaboradores;
	}
	
}
EntConfAlarmeEstoque.prototype = new EntPrincipal;
