var HotSheetServices=function() {
HotSheetServices.initializeBase(this);
this._timeout = 0;
this._userContext = null;
this._succeeded = null;
this._failed = null;
}
HotSheetServices.prototype={
_get_path:function() {
 var p = this.get_path();
 if (p) return p;
 else return HotSheetServices._staticInstance.get_path();},
TagAutoSuggest:function(q,succeededCallback, failedCallback, userContext) {
return this._invoke(this._get_path(), 'TagAutoSuggest',false,{q:q},succeededCallback,failedCallback,userContext); },
HotSheetSignUp:function(email,succeededCallback, failedCallback, userContext) {
return this._invoke(this._get_path(), 'HotSheetSignUp',false,{email:email},succeededCallback,failedCallback,userContext); }}
HotSheetServices.registerClass('HotSheetServices',Sys.Net.WebServiceProxy);
HotSheetServices._staticInstance = new HotSheetServices();
HotSheetServices.set_path = function(value) { HotSheetServices._staticInstance.set_path(value); }
HotSheetServices.get_path = function() { return HotSheetServices._staticInstance.get_path(); }
HotSheetServices.set_timeout = function(value) { HotSheetServices._staticInstance.set_timeout(value); }
HotSheetServices.get_timeout = function() { return HotSheetServices._staticInstance.get_timeout(); }
HotSheetServices.set_defaultUserContext = function(value) { HotSheetServices._staticInstance.set_defaultUserContext(value); }
HotSheetServices.get_defaultUserContext = function() { return HotSheetServices._staticInstance.get_defaultUserContext(); }
HotSheetServices.set_defaultSucceededCallback = function(value) { HotSheetServices._staticInstance.set_defaultSucceededCallback(value); }
HotSheetServices.get_defaultSucceededCallback = function() { return HotSheetServices._staticInstance.get_defaultSucceededCallback(); }
HotSheetServices.set_defaultFailedCallback = function(value) { HotSheetServices._staticInstance.set_defaultFailedCallback(value); }
HotSheetServices.get_defaultFailedCallback = function() { return HotSheetServices._staticInstance.get_defaultFailedCallback(); }
HotSheetServices.set_path("/svc/HotSheetServices.svc");
HotSheetServices.TagAutoSuggest= function(q,onSuccess,onFailed,userContext) {HotSheetServices._staticInstance.TagAutoSuggest(q,onSuccess,onFailed,userContext); }
HotSheetServices.HotSheetSignUp= function(email,onSuccess,onFailed,userContext) {HotSheetServices._staticInstance.HotSheetSignUp(email,onSuccess,onFailed,userContext); }

