Exemplo n.º 1
0
 public GestorPedido()
 {
     this.Comunicacion = new GestorComunicacion();
     this.Cocina       = new GestorCocina(this.Comunicacion);
     this.Stock        = new GestorStock(this.Comunicacion);
     this.Facturacion  = new GestorFacturacion(this.Comunicacion);
 }
Exemplo n.º 2
0
 public KardexService(IGestorStock gestorStock, IGenericRepository repository)
 {
     _gestorStock = gestorStock.NoEsNull(nameof(gestorStock));
     _repository  = repository;
 }
Exemplo n.º 3
0
 public GestorPedido(IGestorCocina cocina, IGestorFacturacion facturacion, IGestorStock stock)
 {
     this.Cocina      = cocina;
     this.Stock       = stock;
     this.Facturacion = facturacion;
 }