var WSAutoUpdate=function() {
WSAutoUpdate.initializeBase(this);
this._timeout = 0;
this._userContext = null;
this._succeeded = null;
this._failed = null;
}
WSAutoUpdate.prototype={
WSPopulateDD:function(DTN,DCN,DPCN,DPV,WhereClause,lblclientId,succeededCallback, failedCallback, userContext) {
return this._invoke(WSAutoUpdate.get_path(), 'WSPopulateDD',false,{DTN:DTN,DCN:DCN,DPCN:DPCN,DPV:DPV,WhereClause:WhereClause,lblclientId:lblclientId},succeededCallback,failedCallback,userContext); },
UpdateValues:function(dtn,dcn,dpcn,dpcv,utn,ucn,ucv,upcn,upcv,DDStatus,succeededCallback, failedCallback, userContext) {
return this._invoke(WSAutoUpdate.get_path(), 'UpdateValues',false,{dtn:dtn,dcn:dcn,dpcn:dpcn,dpcv:dpcv,utn:utn,ucn:ucn,ucv:ucv,upcn:upcn,upcv:upcv,DDStatus:DDStatus},succeededCallback,failedCallback,userContext); }}
WSAutoUpdate.registerClass('WSAutoUpdate',Sys.Net.WebServiceProxy);
WSAutoUpdate._staticInstance = new WSAutoUpdate();
WSAutoUpdate.set_path = function(value) { 
var e = Function._validateParams(arguments, [{name: 'path', type: String}]); if (e) throw e; WSAutoUpdate._staticInstance._path = value; }
WSAutoUpdate.get_path = function() { return WSAutoUpdate._staticInstance._path; }
WSAutoUpdate.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); }
WSAutoUpdate._staticInstance._timeout = value; }
WSAutoUpdate.get_timeout = function() { 
return WSAutoUpdate._staticInstance._timeout; }
WSAutoUpdate.set_defaultUserContext = function(value) { 
WSAutoUpdate._staticInstance._userContext = value; }
WSAutoUpdate.get_defaultUserContext = function() { 
return WSAutoUpdate._staticInstance._userContext; }
WSAutoUpdate.set_defaultSucceededCallback = function(value) { 
var e = Function._validateParams(arguments, [{name: 'defaultSucceededCallback', type: Function}]); if (e) throw e; WSAutoUpdate._staticInstance._succeeded = value; }
WSAutoUpdate.get_defaultSucceededCallback = function() { 
return WSAutoUpdate._staticInstance._succeeded; }
WSAutoUpdate.set_defaultFailedCallback = function(value) { 
var e = Function._validateParams(arguments, [{name: 'defaultFailedCallback', type: Function}]); if (e) throw e; WSAutoUpdate._staticInstance._failed = value; }
WSAutoUpdate.get_defaultFailedCallback = function() { 
return WSAutoUpdate._staticInstance._failed; }
WSAutoUpdate.set_path("/Service/WSAutoUpdate.asmx");
WSAutoUpdate.WSPopulateDD= function(DTN,DCN,DPCN,DPV,WhereClause,lblclientId,onSuccess,onFailed,userContext) {WSAutoUpdate._staticInstance.WSPopulateDD(DTN,DCN,DPCN,DPV,WhereClause,lblclientId,onSuccess,onFailed,userContext); }
WSAutoUpdate.UpdateValues= function(dtn,dcn,dpcn,dpcv,utn,ucn,ucv,upcn,upcv,DDStatus,onSuccess,onFailed,userContext) {WSAutoUpdate._staticInstance.UpdateValues(dtn,dcn,dpcn,dpcv,utn,ucn,ucv,upcn,upcv,DDStatus,onSuccess,onFailed,userContext); }

