var LastMinuteService=function() {
LastMinuteService.initializeBase(this);
this._timeout = 0;
this._userContext = null;
this._succeeded = null;
this._failed = null;
}
LastMinuteService.prototype={
_get_path:function() {
 var p = this.get_path();
 if (p) return p;
 else return LastMinuteService._staticInstance.get_path();},
GetLastMinute:function(succeededCallback, failedCallback, userContext) {
/// <param name="succeededCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="failedCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="userContext" optional="true" mayBeNull="true"></param>
return this._invoke(this._get_path(), 'GetLastMinute',false,{},succeededCallback,failedCallback,userContext); }}
LastMinuteService.registerClass('LastMinuteService',Sys.Net.WebServiceProxy);
LastMinuteService._staticInstance = new LastMinuteService();
LastMinuteService.set_path = function(value) {
LastMinuteService._staticInstance.set_path(value); }
LastMinuteService.get_path = function() { 
/// <value type="String" mayBeNull="true">The service url.</value>
return LastMinuteService._staticInstance.get_path();}
LastMinuteService.set_timeout = function(value) {
LastMinuteService._staticInstance.set_timeout(value); }
LastMinuteService.get_timeout = function() { 
/// <value type="Number">The service timeout.</value>
return LastMinuteService._staticInstance.get_timeout(); }
LastMinuteService.set_defaultUserContext = function(value) { 
LastMinuteService._staticInstance.set_defaultUserContext(value); }
LastMinuteService.get_defaultUserContext = function() { 
/// <value mayBeNull="true">The service default user context.</value>
return LastMinuteService._staticInstance.get_defaultUserContext(); }
LastMinuteService.set_defaultSucceededCallback = function(value) { 
 LastMinuteService._staticInstance.set_defaultSucceededCallback(value); }
LastMinuteService.get_defaultSucceededCallback = function() { 
/// <value type="Function" mayBeNull="true">The service default succeeded callback.</value>
return LastMinuteService._staticInstance.get_defaultSucceededCallback(); }
LastMinuteService.set_defaultFailedCallback = function(value) { 
LastMinuteService._staticInstance.set_defaultFailedCallback(value); }
LastMinuteService.get_defaultFailedCallback = function() { 
/// <value type="Function" mayBeNull="true">The service default failed callback.</value>
return LastMinuteService._staticInstance.get_defaultFailedCallback(); }
LastMinuteService.set_path("/WebServices/LastMinuteService.asmx");
LastMinuteService.GetLastMinute= function(onSuccess,onFailed,userContext) {
/// <param name="succeededCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="failedCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="userContext" optional="true" mayBeNull="true"></param>
LastMinuteService._staticInstance.GetLastMinute(onSuccess,onFailed,userContext); }
