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