コード例 #1
0
        public async Task <IActionResult> Edit(int id, [Bind("Id,Nombre,UnidadMedida,Estado")] Producto producto)
        {
            if (id != producto.Id)
            {
                return(NotFound());
            }

            if (ModelState.IsValid)
            {
                try
                {
                    _context.Update(producto);
                    await _context.SaveChangesAsync();
                }
                catch (DbUpdateConcurrencyException)
                {
                    if (!ProductoExists(producto.Id))
                    {
                        return(NotFound());
                    }
                    else
                    {
                        throw;
                    }
                }
                return(RedirectToAction(nameof(Index)));
            }
            return(View(producto));
        }
コード例 #2
0
        public async Task <IActionResult> Edit(int id, [Bind("Id,Cantidad,MercadoID,ProductoID")] Compra compra)
        {
            if (id != compra.Id)
            {
                return(NotFound());
            }

            if (ModelState.IsValid)
            {
                try
                {
                    _context.Update(compra);
                    await _context.SaveChangesAsync();
                }
                catch (DbUpdateConcurrencyException)
                {
                    if (!CompraExists(compra.Id))
                    {
                        return(NotFound());
                    }
                    else
                    {
                        throw;
                    }
                }
                return(RedirectToAction(nameof(Index)));
            }
            ViewData["MercadoID"]  = new SelectList(_context.Mercados, "Id", "Id", compra.MercadoID);
            ViewData["ProductoID"] = new SelectList(_context.Productos, "Id", "Id", compra.ProductoID);
            return(View(compra));
        }
コード例 #3
0
        public async Task <IActionResult> Edit(int id, [Bind("Id,Nombre,PaisID,Estado")] Departamento departamento)
        {
            if (id != departamento.Id)
            {
                return(NotFound());
            }

            if (ModelState.IsValid)
            {
                try
                {
                    _context.Update(departamento);
                    await _context.SaveChangesAsync();
                }
                catch (DbUpdateConcurrencyException)
                {
                    if (!DepartamentoExists(departamento.Id))
                    {
                        return(NotFound());
                    }
                    else
                    {
                        throw;
                    }
                }
                return(RedirectToAction(nameof(Index)));
            }
            ViewData["PaisID"] = new SelectList(_context.Pais, "Id", "Id", departamento.PaisID);
            return(View(departamento));
        }
コード例 #4
0
        public async Task <IActionResult> Edit(int id, [Bind("Id,Fecha_Creacion,PropietarioID,Estado")] Mercado mercado)
        {
            if (id != mercado.Id)
            {
                return(NotFound());
            }

            if (ModelState.IsValid)
            {
                try
                {
                    _context.Update(mercado);
                    await _context.SaveChangesAsync();
                }
                catch (DbUpdateConcurrencyException)
                {
                    if (!MercadoExists(mercado.Id))
                    {
                        return(NotFound());
                    }
                    else
                    {
                        throw;
                    }
                }
                return(RedirectToAction(nameof(Index)));
            }
            ViewData["PropietarioID"] = new SelectList(_context.Propietarios, "Id", "Id", mercado.PropietarioID);
            return(View(mercado));
        }
コード例 #5
0
        public async Task <IActionResult> Edit(int id, [Bind("Id,Numero,Piso,Bloque,UnidadResidencialID,PropietarioID,Estado")] Apartamento apartamento)
        {
            if (id != apartamento.Id)
            {
                return(NotFound());
            }

            if (ModelState.IsValid)
            {
                try
                {
                    _context.Update(apartamento);
                    await _context.SaveChangesAsync();
                }
                catch (DbUpdateConcurrencyException)
                {
                    if (!ApartamentoExists(apartamento.Id))
                    {
                        return(NotFound());
                    }
                    else
                    {
                        throw;
                    }
                }
                return(RedirectToAction(nameof(Index)));
            }
            ViewData["PropietarioID"]       = new SelectList(_context.Propietarios, "Id", "Id", apartamento.PropietarioID);
            ViewData["UnidadResidencialID"] = new SelectList(_context.UnidadResisdenciales, "Id", "Id", apartamento.UnidadResidencialID);
            return(View(apartamento));
        }
コード例 #6
0
        public async Task <IActionResult> Edit(int id, [Bind("Id,Nombre,Direccion,Telefono,Estado")] UnidadResidencial unidadResidencial)
        {
            if (id != unidadResidencial.Id)
            {
                return(NotFound());
            }

            if (ModelState.IsValid)
            {
                try
                {
                    _context.Update(unidadResidencial);
                    await _context.SaveChangesAsync();
                }
                catch (DbUpdateConcurrencyException)
                {
                    if (!UnidadResidencialExists(unidadResidencial.Id))
                    {
                        return(NotFound());
                    }
                    else
                    {
                        throw;
                    }
                }
                return(RedirectToAction(nameof(Index)));
            }
            return(View(unidadResidencial));
        }