예제 #1
0
        private data.MarcaProductos GetById(int?id)
        {
            data.MarcaProductos aux = new data.MarcaProductos();
            using (var cl = new HttpClient())
            {
                cl.BaseAddress = new Uri(baseurl);
                cl.DefaultRequestHeaders.Clear();
                cl.DefaultRequestHeaders.Accept.Add(new System.Net.Http.Headers.MediaTypeWithQualityHeaderValue("application/json"));

                HttpResponseMessage res = cl.GetAsync("api/MarcaProductos/" + id).Result;

                if (res.IsSuccessStatusCode)
                {
                    var auxres = res.Content.ReadAsStringAsync().Result;
                    aux = JsonConvert.DeserializeObject <data.MarcaProductos>(auxres);
                }
            }
            return(aux);
        }
예제 #2
0
        public async Task <IActionResult> Edit(int id, [Bind("IdMarca,MarcaProducto")] data.MarcaProductos marcaProductos)
        {
            if (id != Convert.ToInt32(marcaProductos.IdMarca))
            {
                return(NotFound());
            }

            if (ModelState.IsValid)
            {
                try
                {
                    using (var cl = new HttpClient())
                    {
                        cl.BaseAddress = new Uri(baseurl);
                        var content     = JsonConvert.SerializeObject(marcaProductos);
                        var buffer      = System.Text.Encoding.UTF8.GetBytes(content);
                        var byteContent = new ByteArrayContent(buffer);
                        byteContent.Headers.ContentType = new System.Net.Http.Headers.MediaTypeHeaderValue("application/json");
                        var postTask = cl.PutAsync("api/MarcaProductos/" + id, byteContent).Result;

                        if (postTask.IsSuccessStatusCode)
                        {
                            return(RedirectToAction("Index"));
                        }
                    }
                }
                catch (Exception)
                {
                    var aux2 = GetById(id);
                    if (aux2 == null)
                    {
                        return(NotFound());
                    }
                    else
                    {
                        throw;
                    }
                }
                return(RedirectToAction(nameof(Index)));
            }
            return(View(marcaProductos));
        }
예제 #3
0
        public async Task <IActionResult> Create([Bind("IdMarca,MarcaProducto")] data.MarcaProductos marcaProductos)
        {
            if (ModelState.IsValid)
            {
                using (var cl = new HttpClient())
                {
                    cl.BaseAddress = new Uri(baseurl);
                    var content     = JsonConvert.SerializeObject(marcaProductos);
                    var buffer      = System.Text.Encoding.UTF8.GetBytes(content);
                    var byteContent = new ByteArrayContent(buffer);
                    byteContent.Headers.ContentType = new System.Net.Http.Headers.MediaTypeHeaderValue("application/json");
                    var postTask = cl.PostAsync("api/MarcaProductos", byteContent).Result;

                    if (postTask.IsSuccessStatusCode)
                    {
                        return(RedirectToAction(nameof(Index)));
                    }
                }
            }
            return(View(marcaProductos));
        }