示例#1
0
        public void Update(Bus bus)
        {
            var _bus = _terminalBusContext.Buses.Find(bus.IdBus);

            if (_bus != null)
            {
                _terminalBusContext.Buses.Update(bus);
                _terminalBusContext.SaveChanges();
            }
        }
示例#2
0
        public void Update(Viaje viaje)
        {
            var _viaje = _terminalBusContext.Viajes.Find(viaje.IdViaje);

            if (_viaje != null)
            {
                _terminalBusContext.Viajes.Update(viaje);
                _terminalBusContext.SaveChanges();
            }
        }
示例#3
0
        public void Update(BoletoUpdateViewModel boleto)
        {
            var _boleto = _terminalBusContext.Boletos.Find(boleto.IdBoleto);

            if (_boleto != null)
            {
                _boleto.IdViaje     = boleto.IdViaje;
                _boleto.Asiento     = boleto.Asiento;
                _boleto.FechaCompra = boleto.FechaCompra;
                _terminalBusContext.Boletos.Update(_boleto);
                _terminalBusContext.SaveChanges();
            }
        }