if(typeof AJAXDemo == "undefined") AJAXDemo={};
if(typeof AJAXDemo.Examples == "undefined") AJAXDemo.Examples={};
if(typeof AJAXDemo.Examples.DataType == "undefined") AJAXDemo.Examples.DataType={};
AJAXDemo.Examples.DataType.Demo_class = function() {};
Object.extend(AJAXDemo.Examples.DataType.Demo_class.prototype, Object.extend(new AjaxPro.AjaxClass(), {
	GetBoolean: function(b) {
		return this.invoke("GetBoolean", {"b":b}, this.GetBoolean.getArguments().slice(1));
	},
	GetInteger: function(i) {
		return this.invoke("GetInteger", {"i":i}, this.GetInteger.getArguments().slice(1));
	},
	GetDouble: function(d) {
		return this.invoke("GetDouble", {"d":d}, this.GetDouble.getArguments().slice(1));
	},
	GetChar: function(c) {
		return this.invoke("GetChar", {"c":c}, this.GetChar.getArguments().slice(1));
	},
	GetNumber: function(a, b, c, d) {
		return this.invoke("GetNumber", {"a":a, "b":b, "c":c, "d":d}, this.GetNumber.getArguments().slice(4));
	},
	GetNumbers: function(a, b) {
		return this.invoke("GetNumbers", {"a":a, "b":b}, this.GetNumbers.getArguments().slice(2));
	},
	GetDateTime: function(d) {
		return this.invoke("GetDateTime", {"d":d}, this.GetDateTime.getArguments().slice(1));
	},
	GetAnyJavaScriptObject: function(o) {
		return this.invoke("GetAnyJavaScriptObject", {"o":o}, this.GetAnyJavaScriptObject.getArguments().slice(1));
	},
	url: '/ajaxpro/AJAXDemo.Examples.DataType.Demo,App_Code.fffswqhf.ashx'
}));
AJAXDemo.Examples.DataType.Demo = new AJAXDemo.Examples.DataType.Demo_class();

