var loadControlService=function() {
loadControlService.initializeBase(this);
this._timeout = 0;
this._userContext = null;
this._succeeded = null;
this._failed = null;
}
loadControlService.prototype={
updateSessionVariable:function(key,value,succeededCallback, failedCallback, userContext) {
return this._invoke(loadControlService.get_path(), 'updateSessionVariable',false,{key:key,value:value},succeededCallback,failedCallback,userContext); },
updateExtents:function(tlx,tly,brx,bry,succeededCallback, failedCallback, userContext) {
return this._invoke(loadControlService.get_path(), 'updateExtents',false,{tlx:tlx,tly:tly,brx:brx,bry:bry},succeededCallback,failedCallback,userContext); },
logActivity:function(activity,succeededCallback, failedCallback, userContext) {
return this._invoke(loadControlService.get_path(), 'logActivity',false,{activity:activity},succeededCallback,failedCallback,userContext); },
selectGeographyType:function(type,succeededCallback, failedCallback, userContext) {
return this._invoke(loadControlService.get_path(), 'selectGeographyType',false,{type:type},succeededCallback,failedCallback,userContext); },
getUserPointsList:function(editId,reloadGeography,succeededCallback, failedCallback, userContext) {
return this._invoke(loadControlService.get_path(), 'getUserPointsList',false,{editId:editId,reloadGeography:reloadGeography},succeededCallback,failedCallback,userContext); },
saveDiaryEntry:function(curDate,plans,activities,notes,succeededCallback, failedCallback, userContext) {
return this._invoke(loadControlService.get_path(), 'saveDiaryEntry',false,{curDate:curDate,plans:plans,activities:activities,notes:notes},succeededCallback,failedCallback,userContext); }}
loadControlService.registerClass('loadControlService',Sys.Net.WebServiceProxy);
loadControlService._staticInstance = new loadControlService();
loadControlService.set_path = function(value) { loadControlService._staticInstance._path = value; }
loadControlService.get_path = function() { return loadControlService._staticInstance._path; }
loadControlService.set_timeout = function(value) { loadControlService._staticInstance._timeout = value; }
loadControlService.get_timeout = function() { return loadControlService._staticInstance._timeout; }
loadControlService.set_defaultUserContext = function(value) { loadControlService._staticInstance._userContext = value; }
loadControlService.get_defaultUserContext = function() { return loadControlService._staticInstance._userContext; }
loadControlService.set_defaultSucceededCallback = function(value) { loadControlService._staticInstance._succeeded = value; }
loadControlService.get_defaultSucceededCallback = function() { return loadControlService._staticInstance._succeeded; }
loadControlService.set_defaultFailedCallback = function(value) { loadControlService._staticInstance._failed = value; }
loadControlService.get_defaultFailedCallback = function() { return loadControlService._staticInstance._failed; }
loadControlService.set_path("/Services/loadControlService.asmx");
loadControlService.updateSessionVariable= function(key,value,onSuccess,onFailed,userContext) {loadControlService._staticInstance.updateSessionVariable(key,value,onSuccess,onFailed,userContext); }
loadControlService.updateExtents= function(tlx,tly,brx,bry,onSuccess,onFailed,userContext) {loadControlService._staticInstance.updateExtents(tlx,tly,brx,bry,onSuccess,onFailed,userContext); }
loadControlService.logActivity= function(activity,onSuccess,onFailed,userContext) {loadControlService._staticInstance.logActivity(activity,onSuccess,onFailed,userContext); }
loadControlService.selectGeographyType= function(type,onSuccess,onFailed,userContext) {loadControlService._staticInstance.selectGeographyType(type,onSuccess,onFailed,userContext); }
loadControlService.getUserPointsList= function(editId,reloadGeography,onSuccess,onFailed,userContext) {loadControlService._staticInstance.getUserPointsList(editId,reloadGeography,onSuccess,onFailed,userContext); }
loadControlService.saveDiaryEntry= function(curDate,plans,activities,notes,onSuccess,onFailed,userContext) {loadControlService._staticInstance.saveDiaryEntry(curDate,plans,activities,notes,onSuccess,onFailed,userContext); }
var gtc = Sys.Net.WebServiceProxy._generateTypedConstructor;
if (typeof(loadControlService_pointsList) === 'undefined') {
var loadControlService_pointsList=gtc("loadControlService+pointsList");
loadControlService_pointsList.registerClass('loadControlService_pointsList');
}
