var MyAtlas=function() {
MyAtlas.initializeBase(this);
this._timeout = 0;
this._userContext = null;
this._succeeded = null;
this._failed = null;
}
MyAtlas.prototype={
GetItems:function(prmPageNumber,prmPlaceID,prmPlaceType,prmItemType,succeededCallback, failedCallback, userContext) {
return this._invoke(MyAtlas.get_path(), 'GetItems',false,{prmPageNumber:prmPageNumber,prmPlaceID:prmPlaceID,prmPlaceType:prmPlaceType,prmItemType:prmItemType},succeededCallback,failedCallback,userContext); },
GetComments:function(prmPageNumber,prmPhotoID,succeededCallback, failedCallback, userContext) {
return this._invoke(MyAtlas.get_path(), 'GetComments',false,{prmPageNumber:prmPageNumber,prmPhotoID:prmPhotoID},succeededCallback,failedCallback,userContext); },
GetPhotoListPagex:function(prmCurrentPage,prmPlaceID,prmRankingCriteria,prmType,succeededCallback, failedCallback, userContext) {
return this._invoke(MyAtlas.get_path(), 'GetPhotoListPagex',false,{prmCurrentPage:prmCurrentPage,prmPlaceID:prmPlaceID,prmRankingCriteria:prmRankingCriteria,prmType:prmType},succeededCallback,failedCallback,userContext); }}
MyAtlas.registerClass('MyAtlas',Sys.Net.WebServiceProxy);
MyAtlas._staticInstance = new MyAtlas();
MyAtlas.set_path = function(value) { MyAtlas._staticInstance._path = value; }
MyAtlas.get_path = function() { return MyAtlas._staticInstance._path; }
MyAtlas.set_timeout = function(value) { MyAtlas._staticInstance._timeout = value; }
MyAtlas.get_timeout = function() { return MyAtlas._staticInstance._timeout; }
MyAtlas.set_defaultUserContext = function(value) { MyAtlas._staticInstance._userContext = value; }
MyAtlas.get_defaultUserContext = function() { return MyAtlas._staticInstance._userContext; }
MyAtlas.set_defaultSucceededCallback = function(value) { MyAtlas._staticInstance._succeeded = value; }
MyAtlas.get_defaultSucceededCallback = function() { return MyAtlas._staticInstance._succeeded; }
MyAtlas.set_defaultFailedCallback = function(value) { MyAtlas._staticInstance._failed = value; }
MyAtlas.get_defaultFailedCallback = function() { return MyAtlas._staticInstance._failed; }
MyAtlas.set_path("/MyAtlas.asmx");
MyAtlas.GetItems= function(prmPageNumber,prmPlaceID,prmPlaceType,prmItemType,onSuccess,onFailed,userContext) {MyAtlas._staticInstance.GetItems(prmPageNumber,prmPlaceID,prmPlaceType,prmItemType,onSuccess,onFailed,userContext); }
MyAtlas.GetComments= function(prmPageNumber,prmPhotoID,onSuccess,onFailed,userContext) {MyAtlas._staticInstance.GetComments(prmPageNumber,prmPhotoID,onSuccess,onFailed,userContext); }
MyAtlas.GetPhotoListPagex= function(prmCurrentPage,prmPlaceID,prmRankingCriteria,prmType,onSuccess,onFailed,userContext) {MyAtlas._staticInstance.GetPhotoListPagex(prmCurrentPage,prmPlaceID,prmRankingCriteria,prmType,onSuccess,onFailed,userContext); }
