Type.registerNamespace('GV.Web.GVWebServices');
GV.Web.GVWebServices.Common=function() {
GV.Web.GVWebServices.Common.initializeBase(this);
this._timeout = 0;
this._userContext = null;
this._succeeded = null;
this._failed = null;
}
GV.Web.GVWebServices.Common.prototype={
_get_path:function() {
 var p = this.get_path();
 if (p) return p;
 else return GV.Web.GVWebServices.Common._staticInstance.get_path();},
GetCompletionList_Organization:function(prefixText,count,succeededCallback, failedCallback, userContext) {
/// <param name="prefixText" type="String">System.String</param>
/// <param name="count" 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(), 'GetCompletionList_Organization',false,{prefixText:prefixText,count:count},succeededCallback,failedCallback,userContext); }}
GV.Web.GVWebServices.Common.registerClass('GV.Web.GVWebServices.Common',Sys.Net.WebServiceProxy);
GV.Web.GVWebServices.Common._staticInstance = new GV.Web.GVWebServices.Common();
GV.Web.GVWebServices.Common.set_path = function(value) {
GV.Web.GVWebServices.Common._staticInstance.set_path(value); }
GV.Web.GVWebServices.Common.get_path = function() { 
/// <value type="String" mayBeNull="true">The service url.</value>
return GV.Web.GVWebServices.Common._staticInstance.get_path();}
GV.Web.GVWebServices.Common.set_timeout = function(value) {
GV.Web.GVWebServices.Common._staticInstance.set_timeout(value); }
GV.Web.GVWebServices.Common.get_timeout = function() { 
/// <value type="Number">The service timeout.</value>
return GV.Web.GVWebServices.Common._staticInstance.get_timeout(); }
GV.Web.GVWebServices.Common.set_defaultUserContext = function(value) { 
GV.Web.GVWebServices.Common._staticInstance.set_defaultUserContext(value); }
GV.Web.GVWebServices.Common.get_defaultUserContext = function() { 
/// <value mayBeNull="true">The service default user context.</value>
return GV.Web.GVWebServices.Common._staticInstance.get_defaultUserContext(); }
GV.Web.GVWebServices.Common.set_defaultSucceededCallback = function(value) { 
 GV.Web.GVWebServices.Common._staticInstance.set_defaultSucceededCallback(value); }
GV.Web.GVWebServices.Common.get_defaultSucceededCallback = function() { 
/// <value type="Function" mayBeNull="true">The service default succeeded callback.</value>
return GV.Web.GVWebServices.Common._staticInstance.get_defaultSucceededCallback(); }
GV.Web.GVWebServices.Common.set_defaultFailedCallback = function(value) { 
GV.Web.GVWebServices.Common._staticInstance.set_defaultFailedCallback(value); }
GV.Web.GVWebServices.Common.get_defaultFailedCallback = function() { 
/// <value type="Function" mayBeNull="true">The service default failed callback.</value>
return GV.Web.GVWebServices.Common._staticInstance.get_defaultFailedCallback(); }
GV.Web.GVWebServices.Common.set_path("/GVWebServices/Common.asmx");
GV.Web.GVWebServices.Common.GetCompletionList_Organization= function(prefixText,count,onSuccess,onFailed,userContext) {
/// <param name="prefixText" type="String">System.String</param>
/// <param name="count" 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>
GV.Web.GVWebServices.Common._staticInstance.GetCompletionList_Organization(prefixText,count,onSuccess,onFailed,userContext); }
