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