Esempio n. 1
0
        public ActionResult Update(SubSORTypeModel subSORType)
        {
            try
            {
                List <SubSORTypeModel> subSORTypeInfo = new List <SubSORTypeModel>();
                using (var client = new HttpClient())
                {
                    client.BaseAddress = new Uri(Baseurl);
                    //HTTP GET
                    var responseTask = client.PutAsJsonAsync("api/subsortype/update", subSORType);
                    responseTask.Wait();

                    var result = responseTask.Result;
                    if (result.IsSuccessStatusCode)
                    {
                        //Storing the response details recieved from web api
                        var subSORTypeResponse = result.Content.ReadAsStringAsync().Result;

                        //Deserializing the response recieved from web api and storing into the Sub SORType  list
                        subSORTypeInfo = JsonConvert.DeserializeObject <List <SubSORTypeModel> >(subSORTypeResponse);
                    }
                }

                return(RedirectToAction("Index"));
            }
            catch (Exception ex)
            {
                ExceptionLogHandler.LogData(ex);
                throw ex;
            }
        }
Esempio n. 2
0
        public async Task <ActionResult> Insert(SubSORTypeModel subSORType)
        {
            try
            {
                SubSORTypeModel SORTypeInfo = new SubSORTypeModel();
                using (var client = new HttpClient())
                {
                    //Passing service base url
                    client.BaseAddress = new Uri(Baseurl);

                    client.DefaultRequestHeaders.Clear();

                    var stype = JsonConvert.SerializeObject(subSORType);

                    // 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/subsortype/insert", new StringContent(stype, 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 SORTypeResponse = Res.Content.ReadAsStringAsync().Result;

                        //Deserializing the response recieved from web api and storing into the Company list
                        SORTypeInfo = JsonConvert.DeserializeObject <SubSORTypeModel>(SORTypeResponse);
                    }

                    //returning the company list to view
                    return(RedirectToAction("Index"));
                }
            }
            catch (Exception ex)
            {
                ExceptionLogHandler.LogData(ex);
                throw ex;
            }
        }