var SimpleSitePhotoGalleryService=function() {
SimpleSitePhotoGalleryService.initializeBase(this);
this._timeout = 0;
this._userContext = null;
this._succeeded = null;
this._failed = null;
}
SimpleSitePhotoGalleryService.prototype={
_get_path:function() {
 var p = this.get_path();
 if (p) return p;
 else return SimpleSitePhotoGalleryService._staticInstance.get_path();},
LoadDefaultImage:function(succeededCallback, failedCallback, userContext) {
return this._invoke(this._get_path(), 'LoadDefaultImage',false,{},succeededCallback,failedCallback,userContext); }}
SimpleSitePhotoGalleryService.registerClass('SimpleSitePhotoGalleryService',Sys.Net.WebServiceProxy);
SimpleSitePhotoGalleryService._staticInstance = new SimpleSitePhotoGalleryService();
SimpleSitePhotoGalleryService.set_path = function(value) { SimpleSitePhotoGalleryService._staticInstance.set_path(value); }
SimpleSitePhotoGalleryService.get_path = function() { return SimpleSitePhotoGalleryService._staticInstance.get_path(); }
SimpleSitePhotoGalleryService.set_timeout = function(value) { SimpleSitePhotoGalleryService._staticInstance.set_timeout(value); }
SimpleSitePhotoGalleryService.get_timeout = function() { return SimpleSitePhotoGalleryService._staticInstance.get_timeout(); }
SimpleSitePhotoGalleryService.set_defaultUserContext = function(value) { SimpleSitePhotoGalleryService._staticInstance.set_defaultUserContext(value); }
SimpleSitePhotoGalleryService.get_defaultUserContext = function() { return SimpleSitePhotoGalleryService._staticInstance.get_defaultUserContext(); }
SimpleSitePhotoGalleryService.set_defaultSucceededCallback = function(value) { SimpleSitePhotoGalleryService._staticInstance.set_defaultSucceededCallback(value); }
SimpleSitePhotoGalleryService.get_defaultSucceededCallback = function() { return SimpleSitePhotoGalleryService._staticInstance.get_defaultSucceededCallback(); }
SimpleSitePhotoGalleryService.set_defaultFailedCallback = function(value) { SimpleSitePhotoGalleryService._staticInstance.set_defaultFailedCallback(value); }
SimpleSitePhotoGalleryService.get_defaultFailedCallback = function() { return SimpleSitePhotoGalleryService._staticInstance.get_defaultFailedCallback(); }
SimpleSitePhotoGalleryService.set_path("/SimpleSite/Public/Controls/PhotoGallery/SimpleSitePhotoGalleryService.asmx");
SimpleSitePhotoGalleryService.LoadDefaultImage= function(onSuccess,onFailed,userContext) {SimpleSitePhotoGalleryService._staticInstance.LoadDefaultImage(onSuccess,onFailed,userContext); }
