if(typeof AJAXDemo == "undefined") AJAXDemo={};
if(typeof AJAXDemo.Examples == "undefined") AJAXDemo.Examples={};
if(typeof AJAXDemo.Examples.DataSets == "undefined") AJAXDemo.Examples.DataSets={};
AJAXDemo.Examples.DataSets.Demo_class = function() {};
Object.extend(AJAXDemo.Examples.DataSets.Demo_class.prototype, Object.extend(new AjaxPro.AjaxClass(), {
	GetDataSet: function() {
		return this.invoke("GetDataSet", {}, this.GetDataSet.getArguments().slice(0));
	},
	GetSqlServerTable: function() {
		return this.invoke("GetSqlServerTable", {}, this.GetSqlServerTable.getArguments().slice(0));
	},
	GetXmlFromDataSet: function(ds) {
		return this.invoke("GetXmlFromDataSet", {"ds":ds}, this.GetXmlFromDataSet.getArguments().slice(1));
	},
	url: '/ajaxpro/AJAXDemo.Examples.DataSets.Demo,App_Code.srstnplq.ashx'
}));
AJAXDemo.Examples.DataSets.Demo = new AJAXDemo.Examples.DataSets.Demo_class();

