var Lima2nightService=function() {
Lima2nightService.initializeBase(this);
this._timeout = 0;
this._userContext = null;
this._succeeded = null;
this._failed = null;
}
Lima2nightService.prototype={
BajarFoto:function(sIdZona,sIdAlbum,sIdFoto,sEmail,succeededCallback, failedCallback, userContext) {
return this._invoke(Lima2nightService.get_path(), 'BajarFoto',false,{sIdZona:sIdZona,sIdAlbum:sIdAlbum,sIdFoto:sIdFoto,sEmail:sEmail},succeededCallback,failedCallback,userContext); },
MandarFoto:function(sIdZona,sIdAlbum,sIdFoto,sEmail,sToEmails,sComentario,succeededCallback, failedCallback, userContext) {
return this._invoke(Lima2nightService.get_path(), 'MandarFoto',false,{sIdZona:sIdZona,sIdAlbum:sIdAlbum,sIdFoto:sIdFoto,sEmail:sEmail,sToEmails:sToEmails,sComentario:sComentario},succeededCallback,failedCallback,userContext); },
VistaBanner:function(sIdZona,sIdBanner,succeededCallback, failedCallback, userContext) {
return this._invoke(Lima2nightService.get_path(), 'VistaBanner',false,{sIdZona:sIdZona,sIdBanner:sIdBanner},succeededCallback,failedCallback,userContext); }}
Lima2nightService.registerClass('Lima2nightService',Sys.Net.WebServiceProxy);
Lima2nightService._staticInstance = new Lima2nightService();
Lima2nightService.set_path = function(value) { 
var e = Function._validateParams(arguments, [{name: 'path', type: String}]); if (e) throw e; Lima2nightService._staticInstance._path = value; }
Lima2nightService.get_path = function() { return Lima2nightService._staticInstance._path; }
Lima2nightService.set_timeout = function(value) { var e = Function._validateParams(arguments, [{name: 'timeout', type: Number}]); if (e) throw e; if (value < 0) { throw Error.argumentOutOfRange('value', value, Sys.Res.invalidTimeout); }
Lima2nightService._staticInstance._timeout = value; }
Lima2nightService.get_timeout = function() { 
return Lima2nightService._staticInstance._timeout; }
Lima2nightService.set_defaultUserContext = function(value) { 
Lima2nightService._staticInstance._userContext = value; }
Lima2nightService.get_defaultUserContext = function() { 
return Lima2nightService._staticInstance._userContext; }
Lima2nightService.set_defaultSucceededCallback = function(value) { 
var e = Function._validateParams(arguments, [{name: 'defaultSucceededCallback', type: Function}]); if (e) throw e; Lima2nightService._staticInstance._succeeded = value; }
Lima2nightService.get_defaultSucceededCallback = function() { 
return Lima2nightService._staticInstance._succeeded; }
Lima2nightService.set_defaultFailedCallback = function(value) { 
var e = Function._validateParams(arguments, [{name: 'defaultFailedCallback', type: Function}]); if (e) throw e; Lima2nightService._staticInstance._failed = value; }
Lima2nightService.get_defaultFailedCallback = function() { 
return Lima2nightService._staticInstance._failed; }
Lima2nightService.set_path("/limatllama/home/Lima2nightService.asmx");
Lima2nightService.BajarFoto= function(sIdZona,sIdAlbum,sIdFoto,sEmail,onSuccess,onFailed,userContext) {Lima2nightService._staticInstance.BajarFoto(sIdZona,sIdAlbum,sIdFoto,sEmail,onSuccess,onFailed,userContext); }
Lima2nightService.MandarFoto= function(sIdZona,sIdAlbum,sIdFoto,sEmail,sToEmails,sComentario,onSuccess,onFailed,userContext) {Lima2nightService._staticInstance.MandarFoto(sIdZona,sIdAlbum,sIdFoto,sEmail,sToEmails,sComentario,onSuccess,onFailed,userContext); }
Lima2nightService.VistaBanner= function(sIdZona,sIdBanner,onSuccess,onFailed,userContext) {Lima2nightService._staticInstance.VistaBanner(sIdZona,sIdBanner,onSuccess,onFailed,userContext); }
