var TransectService=function() {
TransectService.initializeBase(this);
this._timeout = 0;
this._userContext = null;
this._succeeded = null;
this._failed = null;
}
TransectService.prototype={
_get_path:function() {
 var p = this.get_path();
 if (p) return p;
 else return TransectService._staticInstance.get_path();},
GetReportById:function(ReportId,succeededCallback, failedCallback, userContext) {
/// <param name="ReportId" type="String">System.String</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(), 'GetReportById',false,{ReportId:ReportId},succeededCallback,failedCallback,userContext); },
GetJAMTransects:function(succeededCallback, failedCallback, userContext) {
/// <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(), 'GetJAMTransects',false,{},succeededCallback,failedCallback,userContext); },
GetDogTransects:function(succeededCallback, failedCallback, userContext) {
/// <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(), 'GetDogTransects',false,{},succeededCallback,failedCallback,userContext); },
GetJAMTransectsById:function(ReportId,succeededCallback, failedCallback, userContext) {
/// <param name="ReportId" type="String">System.Guid</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(), 'GetJAMTransectsById',false,{ReportId:ReportId},succeededCallback,failedCallback,userContext); },
GetDOGTransectsById:function(ReportId,succeededCallback, failedCallback, userContext) {
/// <param name="ReportId" type="String">System.Guid</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(), 'GetDOGTransectsById',false,{ReportId:ReportId},succeededCallback,failedCallback,userContext); },
GetScandiById:function(ReportId,succeededCallback, failedCallback, userContext) {
/// <param name="ReportId" type="String">System.Guid</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(), 'GetScandiById',false,{ReportId:ReportId},succeededCallback,failedCallback,userContext); },
GetJAMTransect:function(succeededCallback, failedCallback, userContext) {
/// <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(), 'GetJAMTransect',false,{},succeededCallback,failedCallback,userContext); },
GetApiItems:function(succeededCallback, failedCallback, userContext) {
/// <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(), 'GetApiItems',false,{},succeededCallback,failedCallback,userContext); }}
TransectService.registerClass('TransectService',Sys.Net.WebServiceProxy);
TransectService._staticInstance = new TransectService();
TransectService.set_path = function(value) {
TransectService._staticInstance.set_path(value); }
TransectService.get_path = function() { 
/// <value type="String" mayBeNull="true">The service url.</value>
return TransectService._staticInstance.get_path();}
TransectService.set_timeout = function(value) {
TransectService._staticInstance.set_timeout(value); }
TransectService.get_timeout = function() { 
/// <value type="Number">The service timeout.</value>
return TransectService._staticInstance.get_timeout(); }
TransectService.set_defaultUserContext = function(value) { 
TransectService._staticInstance.set_defaultUserContext(value); }
TransectService.get_defaultUserContext = function() { 
/// <value mayBeNull="true">The service default user context.</value>
return TransectService._staticInstance.get_defaultUserContext(); }
TransectService.set_defaultSucceededCallback = function(value) { 
 TransectService._staticInstance.set_defaultSucceededCallback(value); }
TransectService.get_defaultSucceededCallback = function() { 
/// <value type="Function" mayBeNull="true">The service default succeeded callback.</value>
return TransectService._staticInstance.get_defaultSucceededCallback(); }
TransectService.set_defaultFailedCallback = function(value) { 
TransectService._staticInstance.set_defaultFailedCallback(value); }
TransectService.get_defaultFailedCallback = function() { 
/// <value type="Function" mayBeNull="true">The service default failed callback.</value>
return TransectService._staticInstance.get_defaultFailedCallback(); }
TransectService.set_path("/TransectService.svc");
TransectService.GetReportById= function(ReportId,onSuccess,onFailed,userContext) {
/// <param name="ReportId" type="String">System.String</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>
TransectService._staticInstance.GetReportById(ReportId,onSuccess,onFailed,userContext); }
TransectService.GetJAMTransects= function(onSuccess,onFailed,userContext) {
/// <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>
TransectService._staticInstance.GetJAMTransects(onSuccess,onFailed,userContext); }
TransectService.GetDogTransects= function(onSuccess,onFailed,userContext) {
/// <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>
TransectService._staticInstance.GetDogTransects(onSuccess,onFailed,userContext); }
TransectService.GetJAMTransectsById= function(ReportId,onSuccess,onFailed,userContext) {
/// <param name="ReportId" type="String">System.Guid</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>
TransectService._staticInstance.GetJAMTransectsById(ReportId,onSuccess,onFailed,userContext); }
TransectService.GetDOGTransectsById= function(ReportId,onSuccess,onFailed,userContext) {
/// <param name="ReportId" type="String">System.Guid</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>
TransectService._staticInstance.GetDOGTransectsById(ReportId,onSuccess,onFailed,userContext); }
TransectService.GetScandiById= function(ReportId,onSuccess,onFailed,userContext) {
/// <param name="ReportId" type="String">System.Guid</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>
TransectService._staticInstance.GetScandiById(ReportId,onSuccess,onFailed,userContext); }
TransectService.GetJAMTransect= function(onSuccess,onFailed,userContext) {
/// <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>
TransectService._staticInstance.GetJAMTransect(onSuccess,onFailed,userContext); }
TransectService.GetApiItems= function(onSuccess,onFailed,userContext) {
/// <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>
TransectService._staticInstance.GetApiItems(onSuccess,onFailed,userContext); }
var gtc = Sys.Net.WebServiceProxy._generateTypedConstructor;
if (typeof(ClientReportItem) === 'undefined') {
var ClientReportItem=gtc("ClientReportItem:http://schemas.datacontract.org/2004/07/");
ClientReportItem.registerClass('ClientReportItem');
}
Type.registerNamespace('LCSAPI.DataContracts');
if (typeof(LCSAPI.DataContracts.DetailedClientReportItem) === 'undefined') {
LCSAPI.DataContracts.DetailedClientReportItem=gtc("DetailedClientReportItem:http://schemas.datacontract.org/2004/07/LCSAPI.DataContracts");
LCSAPI.DataContracts.DetailedClientReportItem.registerClass('LCSAPI.DataContracts.DetailedClientReportItem');
}
if (typeof(LCSAPI.DataContracts.ClientReportItem) === 'undefined') {
LCSAPI.DataContracts.ClientReportItem=gtc("ClientReportItem:http://schemas.datacontract.org/2004/07/LCSAPI.DataContracts");
LCSAPI.DataContracts.ClientReportItem.registerClass('LCSAPI.DataContracts.ClientReportItem');
}

