function Circuit ( id , name , address ) {
	
	this.getId = function ( ) {
		return id;
	}
	
	this.getName = function ( ) {
		return name;
	}
	
	this.getAddress = function ( ) {
		return address;
	}
}
