Exemple #1
0
        /// <summary>
        /// This call insert new massive change in the system
        /// </summary>
        /// <exception cref="IO.Swagger.Client.ApiException">Thrown when fails to make API call</exception>
        /// <param name="massivechangerequest"> (optional)</param>
        /// <returns>Task of MassiveChangeResponseDTO</returns>
        public async System.Threading.Tasks.Task <MassiveChangeResponseDTO> MassiveChangeInsertNewMassiveChangeAsync(MassiveChangeRequestDTO massivechangerequest = null)
        {
            ApiResponse <MassiveChangeResponseDTO> localVarResponse = await MassiveChangeInsertNewMassiveChangeAsyncWithHttpInfo(massivechangerequest);

            return(localVarResponse.Data);
        }
Exemple #2
0
        /// <summary>
        /// This call insert new massive change in the system
        /// </summary>
        /// <exception cref="IO.Swagger.Client.ApiException">Thrown when fails to make API call</exception>
        /// <param name="massivechangerequest"> (optional)</param>
        /// <returns>Task of ApiResponse (MassiveChangeResponseDTO)</returns>
        public async System.Threading.Tasks.Task <ApiResponse <MassiveChangeResponseDTO> > MassiveChangeInsertNewMassiveChangeAsyncWithHttpInfo(MassiveChangeRequestDTO massivechangerequest = null)
        {
            var    localVarPath         = "/api/MassiveChange";
            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[] {
            };
            String localVarHttpContentType    = this.Configuration.ApiClient.SelectHeaderContentType(localVarHttpContentTypes);

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

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

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

            // authentication (Authorization) 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("MassiveChangeInsertNewMassiveChange", localVarResponse);
                if (exception != null)
                {
                    throw exception;
                }
            }

            return(new ApiResponse <MassiveChangeResponseDTO>(localVarStatusCode,
                                                              localVarResponse.Headers.ToDictionary(x => x.Name, x => x.Value.ToString()),
                                                              (MassiveChangeResponseDTO)this.Configuration.ApiClient.Deserialize(localVarResponse, typeof(MassiveChangeResponseDTO))));
        }
Exemple #3
0
        /// <summary>
        /// This call insert new massive change in the system
        /// </summary>
        /// <exception cref="IO.Swagger.Client.ApiException">Thrown when fails to make API call</exception>
        /// <param name="massivechangerequest"> (optional)</param>
        /// <returns>MassiveChangeResponseDTO</returns>
        public MassiveChangeResponseDTO MassiveChangeInsertNewMassiveChange(MassiveChangeRequestDTO massivechangerequest = null)
        {
            ApiResponse <MassiveChangeResponseDTO> localVarResponse = MassiveChangeInsertNewMassiveChangeWithHttpInfo(massivechangerequest);

            return(localVarResponse.Data);
        }