var wsHistory=function() {
wsHistory.initializeBase(this);
this._timeout = 0;
this._userContext = null;
this._succeeded = null;
this._failed = null;
}
wsHistory.prototype={
Add:function(sID,succeededCallback, failedCallback, userContext) {
return this._invoke(wsHistory.get_path(), 'Add',false,{sID:sID},succeededCallback,failedCallback,userContext); },
Delete:function(sID,succeededCallback, failedCallback, userContext) {
return this._invoke(wsHistory.get_path(), 'Delete',false,{sID:sID},succeededCallback,failedCallback,userContext); }}
wsHistory.registerClass('wsHistory',Sys.Net.WebServiceProxy);
wsHistory._staticInstance = new wsHistory();
wsHistory.set_path = function(value) { 
var e = Function._validateParams(arguments, [{name: 'path', type: String}]); if (e) throw e; wsHistory._staticInstance._path = value; }
wsHistory.get_path = function() { return wsHistory._staticInstance._path; }
wsHistory.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); }
wsHistory._staticInstance._timeout = value; }
wsHistory.get_timeout = function() { 
return wsHistory._staticInstance._timeout; }
wsHistory.set_defaultUserContext = function(value) { 
wsHistory._staticInstance._userContext = value; }
wsHistory.get_defaultUserContext = function() { 
return wsHistory._staticInstance._userContext; }
wsHistory.set_defaultSucceededCallback = function(value) { 
var e = Function._validateParams(arguments, [{name: 'defaultSucceededCallback', type: Function}]); if (e) throw e; wsHistory._staticInstance._succeeded = value; }
wsHistory.get_defaultSucceededCallback = function() { 
return wsHistory._staticInstance._succeeded; }
wsHistory.set_defaultFailedCallback = function(value) { 
var e = Function._validateParams(arguments, [{name: 'defaultFailedCallback', type: Function}]); if (e) throw e; wsHistory._staticInstance._failed = value; }
wsHistory.get_defaultFailedCallback = function() { 
return wsHistory._staticInstance._failed; }
wsHistory.set_path("/HE/WebServices/wsHistory.asmx");
wsHistory.Add= function(sID,onSuccess,onFailed,userContext) {wsHistory._staticInstance.Add(sID,onSuccess,onFailed,userContext); }
wsHistory.Delete= function(sID,onSuccess,onFailed,userContext) {wsHistory._staticInstance.Delete(sID,onSuccess,onFailed,userContext); }

