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