Example #1
0
 public OrdenWeb(Carrito carrito, DetallesDePago detallesDePago)
     : base(carrito)
 {
     _detallesDePago       = detallesDePago;
     _servicioNotificacion = new ServicioNotificacion();
     _servicioPagos        = new ServicioPagos();
     _reservaInventarios   = new ReservaInventarios();
 }
Example #2
0
 public OrdenWeb(Carrito carrito, DetallesDePago detallesDePago)
     : base(carrito)
 {
     _detallesDePago = detallesDePago;
     _servicioNotificacion = new ServicioNotificacion();
     _servicioPagos = new ServicioPagos();
     _reservaInventarios =new ReservaInventarios();
 }
Example #3
0
 public PedidoConTarjetaDeCredito(CarritoDeCompras carritoDeCompras,
                                  DetallesDePago paymentDetails,
                                  IServicioDePago paymentService)
     : base(carritoDeCompras)
 {
     _detallesDePago = paymentDetails;
     _servicioDePago = paymentService;
 }
Example #4
0
 public PedidoEnLinea(CarritoDeCompras carritoDeCompras,
                      DetallesDePago detallesDePago,
                      IServicioDeNotificacion servicioDeNotificacion,
                      IServicioDePago servicioDePago)
     : base(carritoDeCompras)
 {
     _detallesDePago         = detallesDePago;
     _servicioDePago         = servicioDePago;
     _servicioDeNotificacion = servicioDeNotificacion;
 }
Example #5
0
 public OrdenTarjetaCredito(Carrito carrito, DetallesDePago detallesDePago)
     : base(carrito)
 {
     _detallesDePago = detallesDePago;
     _servicioPagos  = new ServicioPagos();
 }
Example #6
0
 public void ProcesarTarjetaDeCredito(DetallesDePago detallesDePago, decimal montoTotal)
 {
     throw new NotImplementedException();
 }
Example #7
0
 public void ProcesarTarjetaDeCredito(DetallesDePago detallesDePago, decimal montoTotal)
 {
     throw new NotImplementedException();
 }
Example #8
0
 public OrdenTarjetaCredito(Carrito carrito, DetallesDePago detallesDePago)
     : base(carrito)
 {
     _detallesDePago = detallesDePago;
     _servicioPagos = new ServicioPagos();
 }