Example #1
0
 public CotizacionController(ICarritoItemService carritoItemService, IDireccionService direccionService, IPedidoService pedidoService, ISedeService sedeService)
 {
     this.carritoItemService = carritoItemService;
     this.direccionService   = direccionService;
     this.pedidoService      = pedidoService;
     this.sedeService        = sedeService;
 }
 public CarritoItemController(ICarritoItemService carritoItemService)
 {
     this.carritoItemService = carritoItemService;
 }