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