addNamespace("Mt.Ws");
Mt.Ws.UiBuilder_class = Class.create();
Object.extend(Mt.Ws.UiBuilder_class.prototype, Object.extend(new AjaxPro.AjaxClass(), {
	CreateSession: function(xml, errorMessage) {
		return this.invoke("CreateSession", {"xml":xml, "errorMessage":errorMessage}, this.CreateSession.getArguments().slice(2));
	},
	GetPanelHtml: function(panelId, inputParam) {
		return this.invoke("GetPanelHtml", {"panelId":panelId, "inputParam":inputParam}, this.GetPanelHtml.getArguments().slice(2));
	},
	GetPanelHtmlWithBool: function(panelId, inputParam, inputParamBool) {
		return this.invoke("GetPanelHtmlWithBool", {"panelId":panelId, "inputParam":inputParam, "inputParamBool":inputParamBool}, this.GetPanelHtmlWithBool.getArguments().slice(3));
	},
	initialize: function() {
		this.url = '/Mt/ajaxpro/Mt.Ws.UiBuilder,Mt.ashx';
	}
}));
Mt.Ws.UiBuilder = new Mt.Ws.UiBuilder_class();


