var ScheduleService=function() {
ScheduleService.initializeBase(this);
this._timeout = 0;
this._userContext = null;
this._succeeded = null;
this._failed = null;
}
ScheduleService.prototype={
SetScheduleDay:function(day,succeededCallback, failedCallback, userContext) {
return this._invoke(ScheduleService.get_path(), 'SetScheduleDay',true,{day:day},succeededCallback,failedCallback,userContext); }}
ScheduleService.registerClass('ScheduleService',Sys.Net.WebServiceProxy);
ScheduleService._staticInstance = new ScheduleService();
ScheduleService.set_path = function(value) { ScheduleService._staticInstance._path = value; }
ScheduleService.get_path = function() { return ScheduleService._staticInstance._path; }
ScheduleService.set_timeout = function(value) { ScheduleService._staticInstance._timeout = value; }
ScheduleService.get_timeout = function() { return ScheduleService._staticInstance._timeout; }
ScheduleService.set_defaultUserContext = function(value) { ScheduleService._staticInstance._userContext = value; }
ScheduleService.get_defaultUserContext = function() { return ScheduleService._staticInstance._userContext; }
ScheduleService.set_defaultSucceededCallback = function(value) { ScheduleService._staticInstance._succeeded = value; }
ScheduleService.get_defaultSucceededCallback = function() { return ScheduleService._staticInstance._succeeded; }
ScheduleService.set_defaultFailedCallback = function(value) { ScheduleService._staticInstance._failed = value; }
ScheduleService.get_defaultFailedCallback = function() { return ScheduleService._staticInstance._failed; }
ScheduleService.set_path("/Scripts/Services/ScheduleService.asmx");
ScheduleService.SetScheduleDay= function(day,onSuccess,onFailed,userContext) {ScheduleService._staticInstance.SetScheduleDay(day,onSuccess,onFailed,userContext); }
