var CaseStudyServices=function() {
CaseStudyServices.initializeBase(this);
this._timeout = 0;
this._userContext = null;
this._succeeded = null;
this._failed = null;
}
CaseStudyServices.prototype={
_get_path:function() {
 var p = this.get_path();
 if (p) return p;
 else return CaseStudyServices._staticInstance.get_path();},
GetCaseStudy:function(CaseId,succeededCallback, failedCallback, userContext) {
/// <param name="CaseId" type="Number">System.Int32</param>
/// <param name="succeededCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="failedCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="userContext" optional="true" mayBeNull="true"></param>
return this._invoke(this._get_path(), 'GetCaseStudy',false,{CaseId:CaseId},succeededCallback,failedCallback,userContext); }}
CaseStudyServices.registerClass('CaseStudyServices',Sys.Net.WebServiceProxy);
CaseStudyServices._staticInstance = new CaseStudyServices();
CaseStudyServices.set_path = function(value) {
CaseStudyServices._staticInstance.set_path(value); }
CaseStudyServices.get_path = function() { 
/// <value type="String" mayBeNull="true">The service url.</value>
return CaseStudyServices._staticInstance.get_path();}
CaseStudyServices.set_timeout = function(value) {
CaseStudyServices._staticInstance.set_timeout(value); }
CaseStudyServices.get_timeout = function() { 
/// <value type="Number">The service timeout.</value>
return CaseStudyServices._staticInstance.get_timeout(); }
CaseStudyServices.set_defaultUserContext = function(value) { 
CaseStudyServices._staticInstance.set_defaultUserContext(value); }
CaseStudyServices.get_defaultUserContext = function() { 
/// <value mayBeNull="true">The service default user context.</value>
return CaseStudyServices._staticInstance.get_defaultUserContext(); }
CaseStudyServices.set_defaultSucceededCallback = function(value) { 
 CaseStudyServices._staticInstance.set_defaultSucceededCallback(value); }
CaseStudyServices.get_defaultSucceededCallback = function() { 
/// <value type="Function" mayBeNull="true">The service default succeeded callback.</value>
return CaseStudyServices._staticInstance.get_defaultSucceededCallback(); }
CaseStudyServices.set_defaultFailedCallback = function(value) { 
CaseStudyServices._staticInstance.set_defaultFailedCallback(value); }
CaseStudyServices.get_defaultFailedCallback = function() { 
/// <value type="Function" mayBeNull="true">The service default failed callback.</value>
return CaseStudyServices._staticInstance.get_defaultFailedCallback(); }
CaseStudyServices.set_path("/Shared/CaseStudyServices.asmx");
CaseStudyServices.GetCaseStudy= function(CaseId,onSuccess,onFailed,userContext) {
/// <param name="CaseId" type="Number">System.Int32</param>
/// <param name="succeededCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="failedCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="userContext" optional="true" mayBeNull="true"></param>
CaseStudyServices._staticInstance.GetCaseStudy(CaseId,onSuccess,onFailed,userContext); }
var gtc = Sys.Net.WebServiceProxy._generateTypedConstructor;
if (typeof(CaseStudyInfo) === 'undefined') {
var CaseStudyInfo=gtc("CaseStudyInfo");
CaseStudyInfo.registerClass('CaseStudyInfo');
}
