var country=function() {
country.initializeBase(this);
this._timeout = 0;
this._userContext = null;
this._succeeded = null;
this._failed = null;
}
country.prototype={
GetAbb:function(str,succeededCallback, failedCallback, userContext) {
return this._invoke(country.get_path(), 'GetAbb',false,{str:str},succeededCallback,failedCallback,userContext); },
GetCountries:function(segment,succeededCallback, failedCallback, userContext) {
return this._invoke(country.get_path(), 'GetCountries',false,{segment:segment},succeededCallback,failedCallback,userContext); },
GetCorps:function(country,segment,succeededCallback, failedCallback, userContext) {
return this._invoke(country.get_path(), 'GetCorps',false,{country:country,segment:segment},succeededCallback,failedCallback,userContext); },
GetNews:function(Country,page,ct1,ct2,succeededCallback, failedCallback, userContext) {
return this._invoke(country.get_path(), 'GetNews',false,{Country:Country,page:page,ct1:ct1,ct2:ct2},succeededCallback,failedCallback,userContext); },
GetCorp:function(Country,page,ct1,ct2,succeededCallback, failedCallback, userContext) {
return this._invoke(country.get_path(), 'GetCorp',false,{Country:Country,page:page,ct1:ct1,ct2:ct2},succeededCallback,failedCallback,userContext); },
GetEquipment:function(Country,page,ct1,ct2,succeededCallback, failedCallback, userContext) {
return this._invoke(country.get_path(), 'GetEquipment',false,{Country:Country,page:page,ct1:ct1,ct2:ct2},succeededCallback,failedCallback,userContext); }}
country.registerClass('country',Sys.Net.WebServiceProxy);
country._staticInstance = new country();
country.set_path = function(value) { country._staticInstance._path = value; }
country.get_path = function() { return country._staticInstance._path; }
country.set_timeout = function(value) { country._staticInstance._timeout = value; }
country.get_timeout = function() { return country._staticInstance._timeout; }
country.set_defaultUserContext = function(value) { country._staticInstance._userContext = value; }
country.get_defaultUserContext = function() { return country._staticInstance._userContext; }
country.set_defaultSucceededCallback = function(value) { country._staticInstance._succeeded = value; }
country.get_defaultSucceededCallback = function() { return country._staticInstance._succeeded; }
country.set_defaultFailedCallback = function(value) { country._staticInstance._failed = value; }
country.get_defaultFailedCallback = function() { return country._staticInstance._failed; }
country.set_path("/webser/country.asmx");
country.GetAbb= function(str,onSuccess,onFailed,userContext) {country._staticInstance.GetAbb(str,onSuccess,onFailed,userContext); }
country.GetCountries= function(segment,onSuccess,onFailed,userContext) {country._staticInstance.GetCountries(segment,onSuccess,onFailed,userContext); }
country.GetCorps= function(country,segment,onSuccess,onFailed,userContext) {country._staticInstance.GetCorps(country,segment,onSuccess,onFailed,userContext); }
country.GetNews= function(Country,page,ct1,ct2,onSuccess,onFailed,userContext) {country._staticInstance.GetNews(Country,page,ct1,ct2,onSuccess,onFailed,userContext); }
country.GetCorp= function(Country,page,ct1,ct2,onSuccess,onFailed,userContext) {country._staticInstance.GetCorp(Country,page,ct1,ct2,onSuccess,onFailed,userContext); }
country.GetEquipment= function(Country,page,ct1,ct2,onSuccess,onFailed,userContext) {country._staticInstance.GetEquipment(Country,page,ct1,ct2,onSuccess,onFailed,userContext); }
