private LaboralExperience generateLaboralExperience()
        {
            bool currentJob = false;

            if (YesRadioButton.IsChecked == true)
            {
                currentJob = true;
            }

            LaboralExperience laboralExperience = new LaboralExperience(jobTitle: TitleTextBox.Text, currentJob: currentJob);

            laboralExperience.StartDate   = dpStartDate.SelectedDate;
            laboralExperience.EndDate     = dpEndDate.SelectedDate;
            laboralExperience.CompanyName = CorpNameTextBox.Text;
            laboralExperience.Location    = CityTextBox.Text + ", " + CountryTextBox.Text;
            laboralExperience.Sector      = (Sector)SectorComboBox.SelectedItem;
            laboralExperience.JobCategory = (JobCategory)SectorComboBox.SelectedItem;

            return(laboralExperience);
        }
 /// <summary>
 /// Adds laboral experience info to an independient user
 /// </summary>
 /// <exception cref="Employex.Client.ApiException">Thrown when fails to make API call</exception>
 /// <param name="body">Laboral experience object that needs to be added to the catalog</param>
 /// <param name="userId">Unique identifier of the user</param>
 /// <returns>Task of void</returns>
 public async System.Threading.Tasks.Task AddLaboralExperienceAsync(LaboralExperience body, int?userId)
 {
     await AddLaboralExperienceAsyncWithHttpInfo(body, userId);
 }
        /// <summary>
        /// Adds laboral experience info to an independient user
        /// </summary>
        /// <exception cref="Employex.Client.ApiException">Thrown when fails to make API call</exception>
        /// <param name="body">Laboral experience object that needs to be added to the catalog</param>
        /// <param name="userId">Unique identifier of the user</param>
        /// <returns>Task of ApiResponse</returns>
        public async System.Threading.Tasks.Task <ApiResponse <Object> > AddLaboralExperienceAsyncWithHttpInfo(LaboralExperience body, int?userId)
        {
            // verify the required parameter 'body' is set
            if (body == null)
            {
                throw new ApiException(400, "Missing required parameter 'body' when calling LaboralExperienceApi->AddLaboralExperience");
            }
            // verify the required parameter 'userId' is set
            if (userId == null)
            {
                throw new ApiException(400, "Missing required parameter 'userId' when calling LaboralExperienceApi->AddLaboralExperience");
            }

            var    localVarPath         = "/users/independient_user/{user_id}/laboral_experience";
            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[] {
            };
            String localVarHttpHeaderAccept    = this.Configuration.ApiClient.SelectHeaderAccept(localVarHttpHeaderAccepts);

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

            if (userId != null)
            {
                localVarPathParams.Add("user_id", this.Configuration.ApiClient.ParameterToString(userId));                 // path parameter
            }
            if (body != null && body.GetType() != typeof(byte[]))
            {
                localVarPostBody = this.Configuration.ApiClient.Serialize(body); // http body (model) parameter
            }
            else
            {
                localVarPostBody = body; // byte array
            }
            // authentication (oAuthSample) required
            // oauth required
            if (!String.IsNullOrEmpty(this.Configuration.AccessToken))
            {
                localVarHeaderParams["Authorization"] = "Bearer " + this.Configuration.AccessToken;
            }

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

            return(new ApiResponse <Object>(localVarStatusCode,
                                            localVarResponse.Headers.ToDictionary(x => x.Name, x => string.Join(",", x.Value)),
                                            null));
        }
 /// <summary>
 /// Adds laboral experience info to an independient user
 /// </summary>
 /// <exception cref="Employex.Client.ApiException">Thrown when fails to make API call</exception>
 /// <param name="body">Laboral experience object that needs to be added to the catalog</param>
 /// <param name="userId">Unique identifier of the user</param>
 /// <returns></returns>
 public void AddLaboralExperience(LaboralExperience body, string userId)
 {
     AddLaboralExperienceWithHttpInfo(body, userId);
 }