public ActionResult Update(JobRatesModel cm) { try { List <JobRatesModel> JobRatesInfo = new List <JobRatesModel>(); using (var client = new HttpClient()) { client.BaseAddress = new Uri(Baseurl); //HTTP GET var responseTask = client.PutAsJsonAsync("api/JobRates/update", cm); responseTask.Wait(); var result = responseTask.Result; if (result.IsSuccessStatusCode) { //Storing the response details recieved from web api var JobRatesResponse = result.Content.ReadAsStringAsync().Result; //Deserializing the response recieved from web api and storing into the Sub SORType list JobRatesInfo = JsonConvert.DeserializeObject <List <JobRatesModel> >(JobRatesResponse); } } return(RedirectToAction("Index", "Jobs")); } catch (Exception ex) { ExceptionLogHandler.LogData(ex); throw ex; } }
public async Task <ActionResult> Insert(JobRatesModel cm) { try { JobRatesModel JobRatesInfo = new JobRatesModel(); using (var client = new HttpClient()) { //Passing service base url client.BaseAddress = new Uri(Baseurl); client.DefaultRequestHeaders.Clear(); var obj = JsonConvert.SerializeObject(cm); // Define request data format client.DefaultRequestHeaders.Accept.Add(new MediaTypeWithQualityHeaderValue("application/json")); //Sending request to find web api REST service resource GetAllComapnies using HttpClient HttpResponseMessage Res = await client.PostAsync("api/JobRates/insert", new StringContent(obj, Encoding.UTF8, "application/json")); //Checking the response is successful or not which is sent using HttpClient if (Res.IsSuccessStatusCode) { //Storing the response details recieved from web api var JobRatesResponse = Res.Content.ReadAsStringAsync().Result; //Deserializing the response recieved from web api and storing into the Company list JobRatesInfo = JsonConvert.DeserializeObject <JobRatesModel>(JobRatesResponse); } //returning the company list to view return(RedirectToAction("Index", "Jobs")); } } catch (Exception ex) { ExceptionLogHandler.LogData(ex); throw ex; } }