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