/**
 * @author Kalapuc Roman (rkalapuc@gmail.com)
 * @copyright Finport Technologies Inc
 * @since 2006
 * @version 1.0
 */

function wlpFrontController(){	
	this._route = null;
	this._filter = null;
	this._order = null;	
	this._pager = null;
	this._method = "get";
	this.ID = null;
}

wlpFrontController.prototype = new wlpEditListController;

wlpFrontController.prototype._load = function(/*String*/ _url){
	//alert(_url);
	window.location = _url;
}

