var HomeSectionWs=function() {
HomeSectionWs.initializeBase(this);
this._timeout = 0;
this._userContext = null;
this._succeeded = null;
this._failed = null;
}
HomeSectionWs.prototype={
GetBookmarksTable:function(UserName,Page,ID,succeededCallback, failedCallback, userContext) {
return this._invoke(HomeSectionWs.get_path(), 'GetBookmarksTable',false,{UserName:UserName,Page:Page,ID:ID},succeededCallback,failedCallback,userContext); },
GetFavoritesTable:function(UserName,Page,ID,succeededCallback, failedCallback, userContext) {
return this._invoke(HomeSectionWs.get_path(), 'GetFavoritesTable',false,{UserName:UserName,Page:Page,ID:ID},succeededCallback,failedCallback,userContext); },
GetPostingsTable:function(UserName,Page,IsAdmin,succeededCallback, failedCallback, userContext) {
return this._invoke(HomeSectionWs.get_path(), 'GetPostingsTable',false,{UserName:UserName,Page:Page,IsAdmin:IsAdmin},succeededCallback,failedCallback,userContext); },
DeleteBookmark:function(Key,succeededCallback, failedCallback, userContext) {
return this._invoke(HomeSectionWs.get_path(), 'DeleteBookmark',false,{Key:Key},succeededCallback,failedCallback,userContext); },
DeleteFavorite:function(Key,succeededCallback, failedCallback, userContext) {
return this._invoke(HomeSectionWs.get_path(), 'DeleteFavorite',false,{Key:Key},succeededCallback,failedCallback,userContext); }}
HomeSectionWs.registerClass('HomeSectionWs',Sys.Net.WebServiceProxy);
HomeSectionWs._staticInstance = new HomeSectionWs();
HomeSectionWs.set_path = function(value) { HomeSectionWs._staticInstance._path = value; }
HomeSectionWs.get_path = function() { return HomeSectionWs._staticInstance._path; }
HomeSectionWs.set_timeout = function(value) { HomeSectionWs._staticInstance._timeout = value; }
HomeSectionWs.get_timeout = function() { return HomeSectionWs._staticInstance._timeout; }
HomeSectionWs.set_defaultUserContext = function(value) { HomeSectionWs._staticInstance._userContext = value; }
HomeSectionWs.get_defaultUserContext = function() { return HomeSectionWs._staticInstance._userContext; }
HomeSectionWs.set_defaultSucceededCallback = function(value) { HomeSectionWs._staticInstance._succeeded = value; }
HomeSectionWs.get_defaultSucceededCallback = function() { return HomeSectionWs._staticInstance._succeeded; }
HomeSectionWs.set_defaultFailedCallback = function(value) { HomeSectionWs._staticInstance._failed = value; }
HomeSectionWs.get_defaultFailedCallback = function() { return HomeSectionWs._staticInstance._failed; }
HomeSectionWs.set_path("/WebServices/HomeSectionWs.asmx");
HomeSectionWs.GetBookmarksTable= function(UserName,Page,ID,onSuccess,onFailed,userContext) {HomeSectionWs._staticInstance.GetBookmarksTable(UserName,Page,ID,onSuccess,onFailed,userContext); }
HomeSectionWs.GetFavoritesTable= function(UserName,Page,ID,onSuccess,onFailed,userContext) {HomeSectionWs._staticInstance.GetFavoritesTable(UserName,Page,ID,onSuccess,onFailed,userContext); }
HomeSectionWs.GetPostingsTable= function(UserName,Page,IsAdmin,onSuccess,onFailed,userContext) {HomeSectionWs._staticInstance.GetPostingsTable(UserName,Page,IsAdmin,onSuccess,onFailed,userContext); }
HomeSectionWs.DeleteBookmark= function(Key,onSuccess,onFailed,userContext) {HomeSectionWs._staticInstance.DeleteBookmark(Key,onSuccess,onFailed,userContext); }
HomeSectionWs.DeleteFavorite= function(Key,onSuccess,onFailed,userContext) {HomeSectionWs._staticInstance.DeleteFavorite(Key,onSuccess,onFailed,userContext); }
