public static MenuLinkList ToWebModel(this VirtoCommerceContentWebModelsMenuLinkList serviceModel, IStorefrontUrlBuilder urlBuilder) { var webModel = new MenuLinkList(); webModel.InjectFrom(serviceModel); webModel.Language = string.IsNullOrEmpty(serviceModel.Language) ? Language.InvariantLanguage : new Language(serviceModel.Language); if (serviceModel.MenuLinks != null) { webModel.MenuLinks = serviceModel.MenuLinks.Select(ml => ml.ToWebModel(urlBuilder)).ToList(); } return(webModel); }
public static MenuLinkList ToWebModel(this VirtoCommerceContentWebModelsMenuLinkList serviceModel, IStorefrontUrlBuilder urlBuilder) { var webModel = new MenuLinkList(); webModel.InjectFrom(serviceModel); if (serviceModel.MenuLinks != null) { webModel.MenuLinks = serviceModel.MenuLinks.Select(ml => ml.ToWebModel(urlBuilder)).ToList(); } if (serviceModel.SecurityScopes != null) { webModel.SecurityScopes = serviceModel.SecurityScopes.Select(ss => ss).ToList(); } return(webModel); }
/// <summary> /// Update menu link list /// </summary> /// <param name="list">Menu link list</param> /// <param name="storeId"></param> /// <returns>Task of ApiResponse</returns> public async System.Threading.Tasks.Task<ApiResponse<Object>> MenuUpdateAsyncWithHttpInfo (VirtoCommerceContentWebModelsMenuLinkList list, string storeId) { // verify the required parameter 'list' is set if (list == null) throw new ApiException(400, "Missing required parameter 'list' when calling MenuUpdate"); // verify the required parameter 'storeId' is set if (storeId == null) throw new ApiException(400, "Missing required parameter 'storeId' when calling MenuUpdate"); var path_ = "/api/cms/{storeId}/menu"; var pathParams = new Dictionary<String, String>(); var queryParams = new Dictionary<String, String>(); var headerParams = new Dictionary<String, String>(Configuration.DefaultHeader); var formParams = new Dictionary<String, String>(); var fileParams = new Dictionary<String, FileParameter>(); Object postBody = null; // to determine the Content-Type header String[] httpContentTypes = new String[] { "application/json", "text/json", "application/x-www-form-urlencoded" }; String httpContentType = Configuration.ApiClient.SelectHeaderContentType(httpContentTypes); // to determine the Accept header String[] httpHeaderAccepts = new String[] { }; String httpHeaderAccept = Configuration.ApiClient.SelectHeaderAccept(httpHeaderAccepts); if (httpHeaderAccept != null) headerParams.Add("Accept", httpHeaderAccept); // set "format" to json by default // e.g. /pet/{petId}.{format} becomes /pet/{petId}.json pathParams.Add("format", "json"); if (storeId != null) pathParams.Add("storeId", Configuration.ApiClient.ParameterToString(storeId)); // path parameter postBody = Configuration.ApiClient.Serialize(list); // http body (model) parameter // make the HTTP request IRestResponse response = (IRestResponse) await Configuration.ApiClient.CallApiAsync(path_, Method.POST, queryParams, postBody, headerParams, formParams, fileParams, pathParams, httpContentType); int statusCode = (int) response.StatusCode; if (statusCode >= 400 && (statusCode != 404 || Configuration.ThrowExceptionWhenStatusCodeIs404)) throw new ApiException (statusCode, "Error calling MenuUpdate: " + response.Content, response.Content); else if (statusCode == 0) throw new ApiException (statusCode, "Error calling MenuUpdate: " + response.ErrorMessage, response.ErrorMessage); return new ApiResponse<Object>(statusCode, response.Headers.ToDictionary(x => x.Name, x => x.Value.ToString()), null); }
/// <summary> /// Update menu link list /// </summary> /// <param name="list">Menu link list</param> /// <param name="storeId"></param> /// <returns>Task of void</returns> public async System.Threading.Tasks.Task MenuUpdateAsync (VirtoCommerceContentWebModelsMenuLinkList list, string storeId) { await MenuUpdateAsyncWithHttpInfo(list, storeId); }
/// <summary> /// Update menu link list /// </summary> /// <param name="list">Menu link list</param> /// <param name="storeId"></param> /// <returns></returns> public void MenuUpdate (VirtoCommerceContentWebModelsMenuLinkList list, string storeId) { MenuUpdateWithHttpInfo(list, storeId); }
/// <summary> /// Update menu link list /// </summary> /// <exception cref="VirtoCommerce.Client.Client.ApiException">Thrown when fails to make API call</exception> /// <param name="list">Menu link list</param> /// <param name="storeId"></param> /// <returns>ApiResponse of Object(void)</returns> public ApiResponse<Object> MenuUpdateWithHttpInfo (VirtoCommerceContentWebModelsMenuLinkList list, string storeId) { // verify the required parameter 'list' is set if (list == null) throw new ApiException(400, "Missing required parameter 'list' when calling CMSContentModuleApi->MenuUpdate"); // verify the required parameter 'storeId' is set if (storeId == null) throw new ApiException(400, "Missing required parameter 'storeId' when calling CMSContentModuleApi->MenuUpdate"); var localVarPath = "/api/cms/{storeId}/menu"; var localVarPathParams = new Dictionary<String, String>(); var localVarQueryParams = new Dictionary<String, String>(); var localVarHeaderParams = new Dictionary<String, String>(Configuration.DefaultHeader); var localVarFormParams = new Dictionary<String, String>(); var localVarFileParams = new Dictionary<String, FileParameter>(); Object localVarPostBody = null; // to determine the Content-Type header String[] localVarHttpContentTypes = new String[] { "application/json", "text/json", "application/xml", "text/xml", "application/x-www-form-urlencoded" }; String localVarHttpContentType = Configuration.ApiClient.SelectHeaderContentType(localVarHttpContentTypes); // to determine the Accept header String[] localVarHttpHeaderAccepts = new String[] { }; String localVarHttpHeaderAccept = Configuration.ApiClient.SelectHeaderAccept(localVarHttpHeaderAccepts); if (localVarHttpHeaderAccept != null) localVarHeaderParams.Add("Accept", localVarHttpHeaderAccept); // set "format" to json by default // e.g. /pet/{petId}.{format} becomes /pet/{petId}.json localVarPathParams.Add("format", "json"); if (storeId != null) localVarPathParams.Add("storeId", Configuration.ApiClient.ParameterToString(storeId)); // path parameter if (list.GetType() != typeof(byte[])) { localVarPostBody = Configuration.ApiClient.Serialize(list); // http body (model) parameter } else { localVarPostBody = list; // byte array } // make the HTTP request IRestResponse localVarResponse = (IRestResponse) Configuration.ApiClient.CallApi(localVarPath, Method.POST, localVarQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarFileParams, localVarPathParams, localVarHttpContentType); int localVarStatusCode = (int) localVarResponse.StatusCode; if (localVarStatusCode >= 400 && (localVarStatusCode != 404 || Configuration.ThrowExceptionWhenStatusCodeIs404)) throw new ApiException (localVarStatusCode, "Error calling MenuUpdate: " + localVarResponse.Content, localVarResponse.Content); else if (localVarStatusCode == 0) throw new ApiException (localVarStatusCode, "Error calling MenuUpdate: " + localVarResponse.ErrorMessage, localVarResponse.ErrorMessage); return new ApiResponse<Object>(localVarStatusCode, localVarResponse.Headers.ToDictionary(x => x.Name, x => x.Value.ToString()), null); }