/// <summary>
        ///
        /// </summary>
        /// <exception cref="IO.Swagger.Client.ApiException">Thrown when fails to make API call</exception>
        /// <param name="oRequest"></param>
        /// <returns>Task of BackofficeModelAPICommonMessageModel</returns>
        public async System.Threading.Tasks.Task <BackofficeModelAPICommonMessageModel> PermessiSavePermessiAsync(BackofficeModelAPIPermessiSaveRequestData oRequest)
        {
            ApiResponse <BackofficeModelAPICommonMessageModel> localVarResponse = await PermessiSavePermessiAsyncWithHttpInfo(oRequest);

            return(localVarResponse.Data);
        }
        /// <summary>
        ///
        /// </summary>
        /// <exception cref="IO.Swagger.Client.ApiException">Thrown when fails to make API call</exception>
        /// <param name="oRequest"></param>
        /// <returns>Task of ApiResponse (BackofficeModelAPICommonMessageModel)</returns>
        public async System.Threading.Tasks.Task <ApiResponse <BackofficeModelAPICommonMessageModel> > PermessiSavePermessiAsyncWithHttpInfo(BackofficeModelAPIPermessiSaveRequestData oRequest)
        {
            // verify the required parameter 'oRequest' is set
            if (oRequest == null)
            {
                throw new ApiException(400, "Missing required parameter 'oRequest' when calling PermessiApi->PermessiSavePermessi");
            }

            var    localVarPath         = "/api/Permessi/SavePermessi";
            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",
                "text/json",
                "application/xml",
                "text/xml",
                "application/x-www-form-urlencoded"
            };
            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 (oRequest != null && oRequest.GetType() != typeof(byte[]))
            {
                localVarPostBody = this.Configuration.ApiClient.Serialize(oRequest); // http body (model) parameter
            }
            else
            {
                localVarPostBody = oRequest; // byte array
            }


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

            return(new ApiResponse <BackofficeModelAPICommonMessageModel>(localVarStatusCode,
                                                                          localVarResponse.Headers.ToDictionary(x => x.Name, x => x.Value.ToString()),
                                                                          (BackofficeModelAPICommonMessageModel)this.Configuration.ApiClient.Deserialize(localVarResponse, typeof(BackofficeModelAPICommonMessageModel))));
        }
        /// <summary>
        ///
        /// </summary>
        /// <exception cref="IO.Swagger.Client.ApiException">Thrown when fails to make API call</exception>
        /// <param name="oRequest"></param>
        /// <returns>BackofficeModelAPICommonMessageModel</returns>
        public BackofficeModelAPICommonMessageModel PermessiSavePermessi(BackofficeModelAPIPermessiSaveRequestData oRequest)
        {
            ApiResponse <BackofficeModelAPICommonMessageModel> localVarResponse = PermessiSavePermessiWithHttpInfo(oRequest);

            return(localVarResponse.Data);
        }