var WebAlbum=function() {
WebAlbum.initializeBase(this);
this._timeout = 0;
this._userContext = null;
this._succeeded = null;
this._failed = null;
}
WebAlbum.prototype={
_get_path:function() {
 var p = this.get_path();
 if (p) return p;
 else return WebAlbum._staticInstance.get_path();},
GetByCategoryIdsByPage:function(preDescription,categoryIds,pageSize,pageNumber,countWord,pageUrlMore,countColumns,succeededCallback, failedCallback, userContext) {
return this._invoke(this._get_path(), 'GetByCategoryIdsByPage',false,{preDescription:preDescription,categoryIds:categoryIds,pageSize:pageSize,pageNumber:pageNumber,countWord:countWord,pageUrlMore:pageUrlMore,countColumns:countColumns},succeededCallback,failedCallback,userContext); },
GetByTypeIds:function(preDescription,typeIds,pageSize,pageNumber,countWord,pageUrlMore,countColumns,succeededCallback, failedCallback, userContext) {
return this._invoke(this._get_path(), 'GetByTypeIds',false,{preDescription:preDescription,typeIds:typeIds,pageSize:pageSize,pageNumber:pageNumber,countWord:countWord,pageUrlMore:pageUrlMore,countColumns:countColumns},succeededCallback,failedCallback,userContext); }}
WebAlbum.registerClass('WebAlbum',Sys.Net.WebServiceProxy);
WebAlbum._staticInstance = new WebAlbum();
WebAlbum.set_path = function(value) { WebAlbum._staticInstance.set_path(value); }
WebAlbum.get_path = function() { return WebAlbum._staticInstance.get_path(); }
WebAlbum.set_timeout = function(value) { WebAlbum._staticInstance.set_timeout(value); }
WebAlbum.get_timeout = function() { return WebAlbum._staticInstance.get_timeout(); }
WebAlbum.set_defaultUserContext = function(value) { WebAlbum._staticInstance.set_defaultUserContext(value); }
WebAlbum.get_defaultUserContext = function() { return WebAlbum._staticInstance.get_defaultUserContext(); }
WebAlbum.set_defaultSucceededCallback = function(value) { WebAlbum._staticInstance.set_defaultSucceededCallback(value); }
WebAlbum.get_defaultSucceededCallback = function() { return WebAlbum._staticInstance.get_defaultSucceededCallback(); }
WebAlbum.set_defaultFailedCallback = function(value) { WebAlbum._staticInstance.set_defaultFailedCallback(value); }
WebAlbum.get_defaultFailedCallback = function() { return WebAlbum._staticInstance.get_defaultFailedCallback(); }
WebAlbum.set_path("/WebService/WebAlbum.asmx");
WebAlbum.GetByCategoryIdsByPage= function(preDescription,categoryIds,pageSize,pageNumber,countWord,pageUrlMore,countColumns,onSuccess,onFailed,userContext) {WebAlbum._staticInstance.GetByCategoryIdsByPage(preDescription,categoryIds,pageSize,pageNumber,countWord,pageUrlMore,countColumns,onSuccess,onFailed,userContext); }
WebAlbum.GetByTypeIds= function(preDescription,typeIds,pageSize,pageNumber,countWord,pageUrlMore,countColumns,onSuccess,onFailed,userContext) {WebAlbum._staticInstance.GetByTypeIds(preDescription,typeIds,pageSize,pageNumber,countWord,pageUrlMore,countColumns,onSuccess,onFailed,userContext); }
