Type.registerNamespace('KForum.WebServices');
KForum.WebServices.Recommendation=function() {
KForum.WebServices.Recommendation.initializeBase(this);
this._timeout = 0;
this._userContext = null;
this._succeeded = null;
this._failed = null;
}
KForum.WebServices.Recommendation.prototype={
_get_path:function() {
 var p = this.get_path();
 if (p) return p;
 else return KForum.WebServices.Recommendation._staticInstance.get_path();},
Save:function(objectID,userID,description,succeededCallback, failedCallback, userContext) {
return this._invoke(this._get_path(), 'Save',false,{objectID:objectID,userID:userID,description:description},succeededCallback,failedCallback,userContext); },
Delete:function(objectID,userID,succeededCallback, failedCallback, userContext) {
return this._invoke(this._get_path(), 'Delete',false,{objectID:objectID,userID:userID},succeededCallback,failedCallback,userContext); },
GetDescription:function(objectID,userID,succeededCallback, failedCallback, userContext) {
return this._invoke(this._get_path(), 'GetDescription',false,{objectID:objectID,userID:userID},succeededCallback,failedCallback,userContext); }}
KForum.WebServices.Recommendation.registerClass('KForum.WebServices.Recommendation',Sys.Net.WebServiceProxy);
KForum.WebServices.Recommendation._staticInstance = new KForum.WebServices.Recommendation();
KForum.WebServices.Recommendation.set_path = function(value) { KForum.WebServices.Recommendation._staticInstance.set_path(value); }
KForum.WebServices.Recommendation.get_path = function() { return KForum.WebServices.Recommendation._staticInstance.get_path(); }
KForum.WebServices.Recommendation.set_timeout = function(value) { KForum.WebServices.Recommendation._staticInstance.set_timeout(value); }
KForum.WebServices.Recommendation.get_timeout = function() { return KForum.WebServices.Recommendation._staticInstance.get_timeout(); }
KForum.WebServices.Recommendation.set_defaultUserContext = function(value) { KForum.WebServices.Recommendation._staticInstance.set_defaultUserContext(value); }
KForum.WebServices.Recommendation.get_defaultUserContext = function() { return KForum.WebServices.Recommendation._staticInstance.get_defaultUserContext(); }
KForum.WebServices.Recommendation.set_defaultSucceededCallback = function(value) { KForum.WebServices.Recommendation._staticInstance.set_defaultSucceededCallback(value); }
KForum.WebServices.Recommendation.get_defaultSucceededCallback = function() { return KForum.WebServices.Recommendation._staticInstance.get_defaultSucceededCallback(); }
KForum.WebServices.Recommendation.set_defaultFailedCallback = function(value) { KForum.WebServices.Recommendation._staticInstance.set_defaultFailedCallback(value); }
KForum.WebServices.Recommendation.get_defaultFailedCallback = function() { return KForum.WebServices.Recommendation._staticInstance.get_defaultFailedCallback(); }
KForum.WebServices.Recommendation.set_enableJsonp = function(value) { KForum.WebServices.Recommendation._staticInstance.set_enableJsonp(value); }
KForum.WebServices.Recommendation.get_enableJsonp = function() { return KForum.WebServices.Recommendation._staticInstance.get_enableJsonp(); }
KForum.WebServices.Recommendation.set_jsonpCallbackParameter = function(value) { KForum.WebServices.Recommendation._staticInstance.set_jsonpCallbackParameter(value); }
KForum.WebServices.Recommendation.get_jsonpCallbackParameter = function() { return KForum.WebServices.Recommendation._staticInstance.get_jsonpCallbackParameter(); }
KForum.WebServices.Recommendation.set_path("/Services/Recommendation.asmx");
KForum.WebServices.Recommendation.Save= function(objectID,userID,description,onSuccess,onFailed,userContext) {KForum.WebServices.Recommendation._staticInstance.Save(objectID,userID,description,onSuccess,onFailed,userContext); }
KForum.WebServices.Recommendation.Delete= function(objectID,userID,onSuccess,onFailed,userContext) {KForum.WebServices.Recommendation._staticInstance.Delete(objectID,userID,onSuccess,onFailed,userContext); }
KForum.WebServices.Recommendation.GetDescription= function(objectID,userID,onSuccess,onFailed,userContext) {KForum.WebServices.Recommendation._staticInstance.GetDescription(objectID,userID,onSuccess,onFailed,userContext); }

