Пример #1
0
        public async Task <IActionResult> Edit(int id, [Bind("Id,VentaId,MedicinaId,Precio")] VentasDetalle ventasDetalle)
        {
            if (id != ventasDetalle.Id)
            {
                return(NotFound());
            }

            if (ModelState.IsValid)
            {
                try
                {
                    _context.Update(ventasDetalle);
                    await _context.SaveChangesAsync();
                }
                catch (DbUpdateConcurrencyException)
                {
                    if (!VentasDetalleExists(ventasDetalle.Id))
                    {
                        return(NotFound());
                    }
                    else
                    {
                        throw;
                    }
                }
                return(RedirectToAction("Index"));
            }
            return(View(ventasDetalle));
        }
Пример #2
0
        public async Task <IActionResult> Edit(int id, [Bind("VentaId,TipoVentaId,Medicina,Cantidad,FechaVenta,Total")] Ventas ventas)
        {
            if (id != ventas.VentaId)
            {
                return(NotFound());
            }

            if (ModelState.IsValid)
            {
                try
                {
                    _context.Update(ventas);
                    await _context.SaveChangesAsync();
                }
                catch (DbUpdateConcurrencyException)
                {
                    if (!VentasExists(ventas.VentaId))
                    {
                        return(NotFound());
                    }
                    else
                    {
                        throw;
                    }
                }
                return(RedirectToAction("Index"));
            }
            return(View(ventas));
        }
Пример #3
0
        public async Task <IActionResult> Edit(int id, [Bind("LaboratorioId,Nombre")] Laboratorios laboratorios)
        {
            if (id != laboratorios.LaboratorioId)
            {
                return(NotFound());
            }

            if (ModelState.IsValid)
            {
                try
                {
                    _context.Update(laboratorios);
                    await _context.SaveChangesAsync();
                }
                catch (DbUpdateConcurrencyException)
                {
                    if (!LaboratoriosExists(laboratorios.LaboratorioId))
                    {
                        return(NotFound());
                    }
                    else
                    {
                        throw;
                    }
                }
                return(RedirectToAction("Index"));
            }
            return(View(laboratorios));
        }
Пример #4
0
        public async Task <IActionResult> Edit(int id, [Bind("MedicinaId,Nombre,Descripcion,PrecioVenta,PrecioCompra,FechaVencimiento,CantidadExistencia,LaboratorioId,Especificaciones,CategoriaId")] Medicinas medicinas)
        {
            if (id != medicinas.MedicinaId)
            {
                return(NotFound());
            }

            if (ModelState.IsValid)
            {
                try
                {
                    _context.Update(medicinas);
                    await _context.SaveChangesAsync();
                }
                catch (DbUpdateConcurrencyException)
                {
                    if (!MedicinasExists(medicinas.MedicinaId))
                    {
                        return(NotFound());
                    }
                    else
                    {
                        throw;
                    }
                }
                return(RedirectToAction("Index"));
            }
            return(View(medicinas));
        }
Пример #5
0
        public async Task <IActionResult> Edit(int id, [Bind("CategoriaId,Descripcion")] Categorias categorias)
        {
            if (id != categorias.CategoriaId)
            {
                return(NotFound());
            }

            if (ModelState.IsValid)
            {
                try
                {
                    _context.Update(categorias);
                    await _context.SaveChangesAsync();
                }
                catch (DbUpdateConcurrencyException)
                {
                    if (!CategoriasExists(categorias.CategoriaId))
                    {
                        return(NotFound());
                    }
                    else
                    {
                        throw;
                    }
                }
                return(RedirectToAction("Index"));
            }
            return(View(categorias));
        }