var WebServicePhotos=function() {
WebServicePhotos.initializeBase(this);
this._timeout = 0;
this._userContext = null;
this._succeeded = null;
this._failed = null;
}
WebServicePhotos.prototype={
GetPhotoThumbnailList:function(prn,ptyRef,width,tailleWidth,tailleHeight,succeededCallback, failedCallback, userContext) {
return this._invoke(WebServicePhotos.get_path(), 'GetPhotoThumbnailList',false,{prn:prn,ptyRef:ptyRef,width:width,tailleWidth:tailleWidth,tailleHeight:tailleHeight},succeededCallback,failedCallback,userContext); }}
WebServicePhotos.registerClass('WebServicePhotos',Sys.Net.WebServiceProxy);
WebServicePhotos._staticInstance = new WebServicePhotos();
WebServicePhotos.set_path = function(value) { WebServicePhotos._staticInstance._path = value; }
WebServicePhotos.get_path = function() { return WebServicePhotos._staticInstance._path; }
WebServicePhotos.set_timeout = function(value) { WebServicePhotos._staticInstance._timeout = value; }
WebServicePhotos.get_timeout = function() { return WebServicePhotos._staticInstance._timeout; }
WebServicePhotos.set_defaultUserContext = function(value) { WebServicePhotos._staticInstance._userContext = value; }
WebServicePhotos.get_defaultUserContext = function() { return WebServicePhotos._staticInstance._userContext; }
WebServicePhotos.set_defaultSucceededCallback = function(value) { WebServicePhotos._staticInstance._succeeded = value; }
WebServicePhotos.get_defaultSucceededCallback = function() { return WebServicePhotos._staticInstance._succeeded; }
WebServicePhotos.set_defaultFailedCallback = function(value) { WebServicePhotos._staticInstance._failed = value; }
WebServicePhotos.get_defaultFailedCallback = function() { return WebServicePhotos._staticInstance._failed; }
WebServicePhotos.set_path("/asmx/WebServicePhotos.asmx");
WebServicePhotos.GetPhotoThumbnailList= function(prn,ptyRef,width,tailleWidth,tailleHeight,onSuccess,onFailed,userContext) {WebServicePhotos._staticInstance.GetPhotoThumbnailList(prn,ptyRef,width,tailleWidth,tailleHeight,onSuccess,onFailed,userContext); }
