Type.registerNamespace('Clickit.WebService');
Clickit.WebService.CustomerWS=function() {
Clickit.WebService.CustomerWS.initializeBase(this);
this._timeout = 0;
this._userContext = null;
this._succeeded = null;
this._failed = null;
}
Clickit.WebService.CustomerWS.prototype={
_get_path:function() {
 var p = this.get_path();
 if (p) return p;
 else return Clickit.WebService.CustomerWS._staticInstance.get_path();},
SaveDescription:function(photoGID,description,succeededCallback, failedCallback, userContext) {
return this._invoke(this._get_path(), 'SaveDescription',false,{photoGID:photoGID,description:description},succeededCallback,failedCallback,userContext); },
AddFavorite:function(photoGID,succeededCallback, failedCallback, userContext) {
return this._invoke(this._get_path(), 'AddFavorite',false,{photoGID:photoGID},succeededCallback,failedCallback,userContext); },
DeleteFavorite:function(photoGID,succeededCallback, failedCallback, userContext) {
return this._invoke(this._get_path(), 'DeleteFavorite',false,{photoGID:photoGID},succeededCallback,failedCallback,userContext); },
SaveCaption:function(photoGID,caption,succeededCallback, failedCallback, userContext) {
return this._invoke(this._get_path(), 'SaveCaption',false,{photoGID:photoGID,caption:caption},succeededCallback,failedCallback,userContext); },
ReportPhoto:function(photoGID,succeededCallback, failedCallback, userContext) {
return this._invoke(this._get_path(), 'ReportPhoto',false,{photoGID:photoGID},succeededCallback,failedCallback,userContext); },
DeletePhoto:function(photoGID,succeededCallback, failedCallback, userContext) {
return this._invoke(this._get_path(), 'DeletePhoto',false,{photoGID:photoGID},succeededCallback,failedCallback,userContext); },
DeleteGuestbookComment:function(grid,succeededCallback, failedCallback, userContext) {
return this._invoke(this._get_path(), 'DeleteGuestbookComment',false,{grid:grid},succeededCallback,failedCallback,userContext); },
ModifyGuestbookComment:function(grid,comment,succeededCallback, failedCallback, userContext) {
return this._invoke(this._get_path(), 'ModifyGuestbookComment',false,{grid:grid,comment:comment},succeededCallback,failedCallback,userContext); },
AddGuestbookComment:function(grid,comment,succeededCallback, failedCallback, userContext) {
return this._invoke(this._get_path(), 'AddGuestbookComment',false,{grid:grid,comment:comment},succeededCallback,failedCallback,userContext); },
AddComment:function(photoGID,comment,grade,succeededCallback, failedCallback, userContext) {
return this._invoke(this._get_path(), 'AddComment',false,{photoGID:photoGID,comment:comment,grade:grade},succeededCallback,failedCallback,userContext); },
ModifyComment:function(photocId,comment,succeededCallback, failedCallback, userContext) {
return this._invoke(this._get_path(), 'ModifyComment',false,{photocId:photocId,comment:comment},succeededCallback,failedCallback,userContext); },
DeleteComment:function(photocId,succeededCallback, failedCallback, userContext) {
return this._invoke(this._get_path(), 'DeleteComment',false,{photocId:photocId},succeededCallback,failedCallback,userContext); },
AddSetPhoto:function(albumGID,photoGID,succeededCallback, failedCallback, userContext) {
return this._invoke(this._get_path(), 'AddSetPhoto',false,{albumGID:albumGID,photoGID:photoGID},succeededCallback,failedCallback,userContext); },
AddPhotoTag:function(photoGID,tag,succeededCallback, failedCallback, userContext) {
return this._invoke(this._get_path(), 'AddPhotoTag',false,{photoGID:photoGID,tag:tag},succeededCallback,failedCallback,userContext); },
DeletePhotoTag:function(photoGID,tag,succeededCallback, failedCallback, userContext) {
return this._invoke(this._get_path(), 'DeletePhotoTag',false,{photoGID:photoGID,tag:tag},succeededCallback,failedCallback,userContext); },
CheckNick:function(nickName,succeededCallback, failedCallback, userContext) {
return this._invoke(this._get_path(), 'CheckNick',false,{nickName:nickName},succeededCallback,failedCallback,userContext); },
UpgradeAccount:function(succeededCallback, failedCallback, userContext) {
return this._invoke(this._get_path(), 'UpgradeAccount',false,{},succeededCallback,failedCallback,userContext); },
UpgradeSets:function(succeededCallback, failedCallback, userContext) {
return this._invoke(this._get_path(), 'UpgradeSets',false,{},succeededCallback,failedCallback,userContext); }}
Clickit.WebService.CustomerWS.registerClass('Clickit.WebService.CustomerWS',Sys.Net.WebServiceProxy);
Clickit.WebService.CustomerWS._staticInstance = new Clickit.WebService.CustomerWS();
Clickit.WebService.CustomerWS.set_path = function(value) { Clickit.WebService.CustomerWS._staticInstance.set_path(value); }
Clickit.WebService.CustomerWS.get_path = function() { return Clickit.WebService.CustomerWS._staticInstance.get_path(); }
Clickit.WebService.CustomerWS.set_timeout = function(value) { Clickit.WebService.CustomerWS._staticInstance.set_timeout(value); }
Clickit.WebService.CustomerWS.get_timeout = function() { return Clickit.WebService.CustomerWS._staticInstance.get_timeout(); }
Clickit.WebService.CustomerWS.set_defaultUserContext = function(value) { Clickit.WebService.CustomerWS._staticInstance.set_defaultUserContext(value); }
Clickit.WebService.CustomerWS.get_defaultUserContext = function() { return Clickit.WebService.CustomerWS._staticInstance.get_defaultUserContext(); }
Clickit.WebService.CustomerWS.set_defaultSucceededCallback = function(value) { Clickit.WebService.CustomerWS._staticInstance.set_defaultSucceededCallback(value); }
Clickit.WebService.CustomerWS.get_defaultSucceededCallback = function() { return Clickit.WebService.CustomerWS._staticInstance.get_defaultSucceededCallback(); }
Clickit.WebService.CustomerWS.set_defaultFailedCallback = function(value) { Clickit.WebService.CustomerWS._staticInstance.set_defaultFailedCallback(value); }
Clickit.WebService.CustomerWS.get_defaultFailedCallback = function() { return Clickit.WebService.CustomerWS._staticInstance.get_defaultFailedCallback(); }
Clickit.WebService.CustomerWS.set_path("/WebService/CustomerWS.asmx");
Clickit.WebService.CustomerWS.SaveDescription= function(photoGID,description,onSuccess,onFailed,userContext) {Clickit.WebService.CustomerWS._staticInstance.SaveDescription(photoGID,description,onSuccess,onFailed,userContext); }
Clickit.WebService.CustomerWS.AddFavorite= function(photoGID,onSuccess,onFailed,userContext) {Clickit.WebService.CustomerWS._staticInstance.AddFavorite(photoGID,onSuccess,onFailed,userContext); }
Clickit.WebService.CustomerWS.DeleteFavorite= function(photoGID,onSuccess,onFailed,userContext) {Clickit.WebService.CustomerWS._staticInstance.DeleteFavorite(photoGID,onSuccess,onFailed,userContext); }
Clickit.WebService.CustomerWS.SaveCaption= function(photoGID,caption,onSuccess,onFailed,userContext) {Clickit.WebService.CustomerWS._staticInstance.SaveCaption(photoGID,caption,onSuccess,onFailed,userContext); }
Clickit.WebService.CustomerWS.ReportPhoto= function(photoGID,onSuccess,onFailed,userContext) {Clickit.WebService.CustomerWS._staticInstance.ReportPhoto(photoGID,onSuccess,onFailed,userContext); }
Clickit.WebService.CustomerWS.DeletePhoto= function(photoGID,onSuccess,onFailed,userContext) {Clickit.WebService.CustomerWS._staticInstance.DeletePhoto(photoGID,onSuccess,onFailed,userContext); }
Clickit.WebService.CustomerWS.DeleteGuestbookComment= function(grid,onSuccess,onFailed,userContext) {Clickit.WebService.CustomerWS._staticInstance.DeleteGuestbookComment(grid,onSuccess,onFailed,userContext); }
Clickit.WebService.CustomerWS.ModifyGuestbookComment= function(grid,comment,onSuccess,onFailed,userContext) {Clickit.WebService.CustomerWS._staticInstance.ModifyGuestbookComment(grid,comment,onSuccess,onFailed,userContext); }
Clickit.WebService.CustomerWS.AddGuestbookComment= function(grid,comment,onSuccess,onFailed,userContext) {Clickit.WebService.CustomerWS._staticInstance.AddGuestbookComment(grid,comment,onSuccess,onFailed,userContext); }
Clickit.WebService.CustomerWS.AddComment= function(photoGID,comment,grade,onSuccess,onFailed,userContext) {Clickit.WebService.CustomerWS._staticInstance.AddComment(photoGID,comment,grade,onSuccess,onFailed,userContext); }
Clickit.WebService.CustomerWS.ModifyComment= function(photocId,comment,onSuccess,onFailed,userContext) {Clickit.WebService.CustomerWS._staticInstance.ModifyComment(photocId,comment,onSuccess,onFailed,userContext); }
Clickit.WebService.CustomerWS.DeleteComment= function(photocId,onSuccess,onFailed,userContext) {Clickit.WebService.CustomerWS._staticInstance.DeleteComment(photocId,onSuccess,onFailed,userContext); }
Clickit.WebService.CustomerWS.AddSetPhoto= function(albumGID,photoGID,onSuccess,onFailed,userContext) {Clickit.WebService.CustomerWS._staticInstance.AddSetPhoto(albumGID,photoGID,onSuccess,onFailed,userContext); }
Clickit.WebService.CustomerWS.AddPhotoTag= function(photoGID,tag,onSuccess,onFailed,userContext) {Clickit.WebService.CustomerWS._staticInstance.AddPhotoTag(photoGID,tag,onSuccess,onFailed,userContext); }
Clickit.WebService.CustomerWS.DeletePhotoTag= function(photoGID,tag,onSuccess,onFailed,userContext) {Clickit.WebService.CustomerWS._staticInstance.DeletePhotoTag(photoGID,tag,onSuccess,onFailed,userContext); }
Clickit.WebService.CustomerWS.CheckNick= function(nickName,onSuccess,onFailed,userContext) {Clickit.WebService.CustomerWS._staticInstance.CheckNick(nickName,onSuccess,onFailed,userContext); }
Clickit.WebService.CustomerWS.UpgradeAccount= function(onSuccess,onFailed,userContext) {Clickit.WebService.CustomerWS._staticInstance.UpgradeAccount(onSuccess,onFailed,userContext); }
Clickit.WebService.CustomerWS.UpgradeSets= function(onSuccess,onFailed,userContext) {Clickit.WebService.CustomerWS._staticInstance.UpgradeSets(onSuccess,onFailed,userContext); }
