var UCContactDetails=function() {
UCContactDetails.initializeBase(this);
this._timeout = 0;
this._userContext = null;
this._succeeded = null;
this._failed = null;
}
UCContactDetails.prototype={
_get_path:function() {
 var p = this.get_path();
 if (p) return p;
 else return UCContactDetails._staticInstance.get_path();},
GetCountryIDByPrefix:function(prefix,succeededCallback, failedCallback, userContext) {
/// <param name="prefix" type="Number">System.Int32</param>
/// <param name="succeededCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="failedCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="userContext" optional="true" mayBeNull="true"></param>
return this._invoke(this._get_path(), 'GetCountryIDByPrefix',false,{prefix:prefix},succeededCallback,failedCallback,userContext); },
GetPrefixByCountryID:function(countryID,succeededCallback, failedCallback, userContext) {
/// <param name="countryID" type="Number">System.Int32</param>
/// <param name="succeededCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="failedCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="userContext" optional="true" mayBeNull="true"></param>
return this._invoke(this._get_path(), 'GetPrefixByCountryID',false,{countryID:countryID},succeededCallback,failedCallback,userContext); },
GetCountryByUserID:function(userID,succeededCallback, failedCallback, userContext) {
/// <param name="userID" type="Number">System.Int32</param>
/// <param name="succeededCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="failedCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="userContext" optional="true" mayBeNull="true"></param>
return this._invoke(this._get_path(), 'GetCountryByUserID',false,{userID:userID},succeededCallback,failedCallback,userContext); }}
UCContactDetails.registerClass('UCContactDetails',Sys.Net.WebServiceProxy);
UCContactDetails._staticInstance = new UCContactDetails();
UCContactDetails.set_path = function(value) {
UCContactDetails._staticInstance.set_path(value); }
UCContactDetails.get_path = function() { 
/// <value type="String" mayBeNull="true">The service url.</value>
return UCContactDetails._staticInstance.get_path();}
UCContactDetails.set_timeout = function(value) {
UCContactDetails._staticInstance.set_timeout(value); }
UCContactDetails.get_timeout = function() { 
/// <value type="Number">The service timeout.</value>
return UCContactDetails._staticInstance.get_timeout(); }
UCContactDetails.set_defaultUserContext = function(value) { 
UCContactDetails._staticInstance.set_defaultUserContext(value); }
UCContactDetails.get_defaultUserContext = function() { 
/// <value mayBeNull="true">The service default user context.</value>
return UCContactDetails._staticInstance.get_defaultUserContext(); }
UCContactDetails.set_defaultSucceededCallback = function(value) { 
 UCContactDetails._staticInstance.set_defaultSucceededCallback(value); }
UCContactDetails.get_defaultSucceededCallback = function() { 
/// <value type="Function" mayBeNull="true">The service default succeeded callback.</value>
return UCContactDetails._staticInstance.get_defaultSucceededCallback(); }
UCContactDetails.set_defaultFailedCallback = function(value) { 
UCContactDetails._staticInstance.set_defaultFailedCallback(value); }
UCContactDetails.get_defaultFailedCallback = function() { 
/// <value type="Function" mayBeNull="true">The service default failed callback.</value>
return UCContactDetails._staticInstance.get_defaultFailedCallback(); }
UCContactDetails.set_path("/ExpoBee/AjaxServices/UCContactDetails.asmx");
UCContactDetails.GetCountryIDByPrefix= function(prefix,onSuccess,onFailed,userContext) {
/// <param name="prefix" type="Number">System.Int32</param>
/// <param name="succeededCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="failedCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="userContext" optional="true" mayBeNull="true"></param>
UCContactDetails._staticInstance.GetCountryIDByPrefix(prefix,onSuccess,onFailed,userContext); }
UCContactDetails.GetPrefixByCountryID= function(countryID,onSuccess,onFailed,userContext) {
/// <param name="countryID" type="Number">System.Int32</param>
/// <param name="succeededCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="failedCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="userContext" optional="true" mayBeNull="true"></param>
UCContactDetails._staticInstance.GetPrefixByCountryID(countryID,onSuccess,onFailed,userContext); }
UCContactDetails.GetCountryByUserID= function(userID,onSuccess,onFailed,userContext) {
/// <param name="userID" type="Number">System.Int32</param>
/// <param name="succeededCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="failedCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="userContext" optional="true" mayBeNull="true"></param>
UCContactDetails._staticInstance.GetCountryByUserID(userID,onSuccess,onFailed,userContext); }
