Exemplo n.º 1
0
        /// <summary>
        /// Wyszukiwarka krajów wg kodu
        /// </summary>
        /// <exception cref="IO.Swagger.Client.ApiException">Thrown when fails to make API call</exception>
        /// <param name="request"> (optional)</param>
        /// <returns>Task of List&lt;BdoServiceModelsDtoGeneralResourcesCountryCountryDto&gt;</returns>
        public async System.Threading.Tasks.Task <List <BdoServiceModelsDtoGeneralResourcesCountryCountryDto> > SearchCountryAsync(WasteRegisterPublicApiApiModelsRequestsGeneralResourcesCountryV1SearchCountryRequest request = null)
        {
            ApiResponse <List <BdoServiceModelsDtoGeneralResourcesCountryCountryDto> > localVarResponse = await SearchCountryAsyncWithHttpInfo(request);

            return(localVarResponse.Data);
        }
Exemplo n.º 2
0
        /// <summary>
        /// Wyszukiwarka krajów wg kodu
        /// </summary>
        /// <exception cref="IO.Swagger.Client.ApiException">Thrown when fails to make API call</exception>
        /// <param name="request"> (optional)</param>
        /// <returns>Task of ApiResponse (List&lt;BdoServiceModelsDtoGeneralResourcesCountryCountryDto&gt;)</returns>
        public async System.Threading.Tasks.Task <ApiResponse <List <BdoServiceModelsDtoGeneralResourcesCountryCountryDto> > > SearchCountryAsyncWithHttpInfo(WasteRegisterPublicApiApiModelsRequestsGeneralResourcesCountryV1SearchCountryRequest request = null)
        {
            var    localVarPath         = "/GeneralResources/v1/Country/search";
            var    localVarPathParams   = new Dictionary <String, String>();
            var    localVarQueryParams  = new List <KeyValuePair <String, String> >();
            var    localVarHeaderParams = new Dictionary <String, String>(this.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"
            };
            String localVarHttpContentType = this.Configuration.ApiClient.SelectHeaderContentType(localVarHttpContentTypes);

            // to determine the Accept header
            String[] localVarHttpHeaderAccepts = new String[] {
                "application/json"
            };
            String localVarHttpHeaderAccept = this.Configuration.ApiClient.SelectHeaderAccept(localVarHttpHeaderAccepts);

            if (localVarHttpHeaderAccept != null)
            {
                localVarHeaderParams.Add("Accept", localVarHttpHeaderAccept);
            }

            if (request != null && request.GetType() != typeof(byte[]))
            {
                localVarPostBody = this.Configuration.ApiClient.Serialize(request); // http body (model) parameter
            }
            else
            {
                localVarPostBody = request; // byte array
            }

            // authentication (Bearer) required
            if (!String.IsNullOrEmpty(this.Configuration.GetApiKeyWithPrefix("Authorization")))
            {
                localVarHeaderParams["Authorization"] = this.Configuration.GetApiKeyWithPrefix("Authorization");
            }

            // make the HTTP request
            IRestResponse localVarResponse = (IRestResponse)await this.Configuration.ApiClient.CallApiAsync(localVarPath,
                                                                                                            Method.POST, localVarQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarFileParams,
                                                                                                            localVarPathParams, localVarHttpContentType);

            int localVarStatusCode = (int)localVarResponse.StatusCode;

            if (ExceptionFactory != null)
            {
                Exception exception = ExceptionFactory("SearchCountry", localVarResponse);
                if (exception != null)
                {
                    throw exception;
                }
            }

            return(new ApiResponse <List <BdoServiceModelsDtoGeneralResourcesCountryCountryDto> >(localVarStatusCode,
                                                                                                  localVarResponse.Headers.ToDictionary(x => x.Name, x => x.Value.ToString()),
                                                                                                  (List <BdoServiceModelsDtoGeneralResourcesCountryCountryDto>) this.Configuration.ApiClient.Deserialize(localVarResponse, typeof(List <BdoServiceModelsDtoGeneralResourcesCountryCountryDto>))));
        }
Exemplo n.º 3
0
        /// <summary>
        /// Wyszukiwarka krajów wg kodu
        /// </summary>
        /// <exception cref="IO.Swagger.Client.ApiException">Thrown when fails to make API call</exception>
        /// <param name="request"> (optional)</param>
        /// <returns>List&lt;BdoServiceModelsDtoGeneralResourcesCountryCountryDto&gt;</returns>
        public List <BdoServiceModelsDtoGeneralResourcesCountryCountryDto> SearchCountry(WasteRegisterPublicApiApiModelsRequestsGeneralResourcesCountryV1SearchCountryRequest request = null)
        {
            ApiResponse <List <BdoServiceModelsDtoGeneralResourcesCountryCountryDto> > localVarResponse = SearchCountryWithHttpInfo(request);

            return(localVarResponse.Data);
        }