var showbills=function() {
showbills.initializeBase(this);
this._timeout = 0;
this._userContext = null;
this._succeeded = null;
this._failed = null;
}
showbills.prototype={
HelloWorld:function(succeededCallback, failedCallback, userContext) {
return this._invoke(showbills.get_path(), 'HelloWorld',false,{},succeededCallback,failedCallback,userContext); },
GetData:function(succeededCallback, failedCallback, userContext) {
return this._invoke(showbills.get_path(), 'GetData',false,{},succeededCallback,failedCallback,userContext); }}
showbills.registerClass('showbills',Sys.Net.WebServiceProxy);
showbills._staticInstance = new showbills();
showbills.set_path = function(value) { showbills._staticInstance._path = value; }
showbills.get_path = function() { return showbills._staticInstance._path; }
showbills.set_timeout = function(value) { showbills._staticInstance._timeout = value; }
showbills.get_timeout = function() { return showbills._staticInstance._timeout; }
showbills.set_defaultUserContext = function(value) { showbills._staticInstance._userContext = value; }
showbills.get_defaultUserContext = function() { return showbills._staticInstance._userContext; }
showbills.set_defaultSucceededCallback = function(value) { showbills._staticInstance._succeeded = value; }
showbills.get_defaultSucceededCallback = function() { return showbills._staticInstance._succeeded; }
showbills.set_defaultFailedCallback = function(value) { showbills._staticInstance._failed = value; }
showbills.get_defaultFailedCallback = function() { return showbills._staticInstance._failed; }
showbills.set_path("/webServices/showbills.asmx");
showbills.HelloWorld= function(onSuccess,onFailed,userContext) {showbills._staticInstance.HelloWorld(onSuccess,onFailed,userContext); }
showbills.GetData= function(onSuccess,onFailed,userContext) {showbills._staticInstance.GetData(onSuccess,onFailed,userContext); }
var gtc = Sys.Net.WebServiceProxy._generateTypedConstructor;
Type.registerNamespace('System.Data');
if (typeof(System.Data.DataTable) === 'undefined') {
System.Data.DataTable=gtc("System.Data.DataTable");
System.Data.DataTable.registerClass('System.Data.DataTable');
}
