示例#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);
 }
示例#2
0
 public GestorCocina(IGestorComunicacion gestorComunicacion)
 {
     this.gestorComunicacion = gestorComunicacion;
 }
示例#3
0
 public GestorFacturacion(IGestorComunicacion gestorComunicacion)
 {
     this.gestorComunicacion = gestorComunicacion;
 }
示例#4
0
 public GestorFantasma(IGestorComunicacion gestorComunicacion)
 {
     this.gestorComunicacion = gestorComunicacion;
 }
示例#5
0
 /// <summary>
 /// Constructor a partir de un Gestor de Comunicacion
 /// </summary>
 /// <param name="gestorComunicacion">Gestor de Comunicacion</param>
 public GestorStock(IGestorComunicacion gestorComunicacion)
 {
     this.gestorComunicacion = gestorComunicacion;
 }