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