Type.registerNamespace('LiveLife.Web.Scripts.ScriptServices');
LiveLife.Web.Scripts.ScriptServices.WSEvents=function() {
LiveLife.Web.Scripts.ScriptServices.WSEvents.initializeBase(this);
this._timeout = 0;
this._userContext = null;
this._succeeded = null;
this._failed = null;
}
LiveLife.Web.Scripts.ScriptServices.WSEvents.prototype={
_get_path:function() {
 var p = this.get_path();
 if (p) return p;
 else return LiveLife.Web.Scripts.ScriptServices.WSEvents._staticInstance.get_path();},
GetToday:function(succeededCallback, failedCallback, userContext) {
return this._invoke(this._get_path(), 'GetToday',false,{},succeededCallback,failedCallback,userContext); },
GetMonth:function(year,month,selectedDay,succeededCallback, failedCallback, userContext) {
return this._invoke(this._get_path(), 'GetMonth',false,{year:year,month:month,selectedDay:selectedDay},succeededCallback,failedCallback,userContext); },
GetTodayBig:function(succeededCallback, failedCallback, userContext) {
return this._invoke(this._get_path(), 'GetTodayBig',false,{},succeededCallback,failedCallback,userContext); },
GetMonthBig:function(year,month,succeededCallback, failedCallback, userContext) {
return this._invoke(this._get_path(), 'GetMonthBig',false,{year:year,month:month},succeededCallback,failedCallback,userContext); },
EventTitleExists:function(currentEventID,title,succeededCallback, failedCallback, userContext) {
return this._invoke(this._get_path(), 'EventTitleExists',false,{currentEventID:currentEventID,title:title},succeededCallback,failedCallback,userContext); }}
LiveLife.Web.Scripts.ScriptServices.WSEvents.registerClass('LiveLife.Web.Scripts.ScriptServices.WSEvents',Sys.Net.WebServiceProxy);
LiveLife.Web.Scripts.ScriptServices.WSEvents._staticInstance = new LiveLife.Web.Scripts.ScriptServices.WSEvents();
LiveLife.Web.Scripts.ScriptServices.WSEvents.set_path = function(value) { LiveLife.Web.Scripts.ScriptServices.WSEvents._staticInstance.set_path(value); }
LiveLife.Web.Scripts.ScriptServices.WSEvents.get_path = function() { return LiveLife.Web.Scripts.ScriptServices.WSEvents._staticInstance.get_path(); }
LiveLife.Web.Scripts.ScriptServices.WSEvents.set_timeout = function(value) { LiveLife.Web.Scripts.ScriptServices.WSEvents._staticInstance.set_timeout(value); }
LiveLife.Web.Scripts.ScriptServices.WSEvents.get_timeout = function() { return LiveLife.Web.Scripts.ScriptServices.WSEvents._staticInstance.get_timeout(); }
LiveLife.Web.Scripts.ScriptServices.WSEvents.set_defaultUserContext = function(value) { LiveLife.Web.Scripts.ScriptServices.WSEvents._staticInstance.set_defaultUserContext(value); }
LiveLife.Web.Scripts.ScriptServices.WSEvents.get_defaultUserContext = function() { return LiveLife.Web.Scripts.ScriptServices.WSEvents._staticInstance.get_defaultUserContext(); }
LiveLife.Web.Scripts.ScriptServices.WSEvents.set_defaultSucceededCallback = function(value) { LiveLife.Web.Scripts.ScriptServices.WSEvents._staticInstance.set_defaultSucceededCallback(value); }
LiveLife.Web.Scripts.ScriptServices.WSEvents.get_defaultSucceededCallback = function() { return LiveLife.Web.Scripts.ScriptServices.WSEvents._staticInstance.get_defaultSucceededCallback(); }
LiveLife.Web.Scripts.ScriptServices.WSEvents.set_defaultFailedCallback = function(value) { LiveLife.Web.Scripts.ScriptServices.WSEvents._staticInstance.set_defaultFailedCallback(value); }
LiveLife.Web.Scripts.ScriptServices.WSEvents.get_defaultFailedCallback = function() { return LiveLife.Web.Scripts.ScriptServices.WSEvents._staticInstance.get_defaultFailedCallback(); }
LiveLife.Web.Scripts.ScriptServices.WSEvents.set_enableJsonp = function(value) { LiveLife.Web.Scripts.ScriptServices.WSEvents._staticInstance.set_enableJsonp(value); }
LiveLife.Web.Scripts.ScriptServices.WSEvents.get_enableJsonp = function() { return LiveLife.Web.Scripts.ScriptServices.WSEvents._staticInstance.get_enableJsonp(); }
LiveLife.Web.Scripts.ScriptServices.WSEvents.set_jsonpCallbackParameter = function(value) { LiveLife.Web.Scripts.ScriptServices.WSEvents._staticInstance.set_jsonpCallbackParameter(value); }
LiveLife.Web.Scripts.ScriptServices.WSEvents.get_jsonpCallbackParameter = function() { return LiveLife.Web.Scripts.ScriptServices.WSEvents._staticInstance.get_jsonpCallbackParameter(); }
LiveLife.Web.Scripts.ScriptServices.WSEvents.set_path("/Scripts/ScriptServices/WSEvents.asmx");
LiveLife.Web.Scripts.ScriptServices.WSEvents.GetToday= function(onSuccess,onFailed,userContext) {LiveLife.Web.Scripts.ScriptServices.WSEvents._staticInstance.GetToday(onSuccess,onFailed,userContext); }
LiveLife.Web.Scripts.ScriptServices.WSEvents.GetMonth= function(year,month,selectedDay,onSuccess,onFailed,userContext) {LiveLife.Web.Scripts.ScriptServices.WSEvents._staticInstance.GetMonth(year,month,selectedDay,onSuccess,onFailed,userContext); }
LiveLife.Web.Scripts.ScriptServices.WSEvents.GetTodayBig= function(onSuccess,onFailed,userContext) {LiveLife.Web.Scripts.ScriptServices.WSEvents._staticInstance.GetTodayBig(onSuccess,onFailed,userContext); }
LiveLife.Web.Scripts.ScriptServices.WSEvents.GetMonthBig= function(year,month,onSuccess,onFailed,userContext) {LiveLife.Web.Scripts.ScriptServices.WSEvents._staticInstance.GetMonthBig(year,month,onSuccess,onFailed,userContext); }
LiveLife.Web.Scripts.ScriptServices.WSEvents.EventTitleExists= function(currentEventID,title,onSuccess,onFailed,userContext) {LiveLife.Web.Scripts.ScriptServices.WSEvents._staticInstance.EventTitleExists(currentEventID,title,onSuccess,onFailed,userContext); }

