Ejemplo n.º 1
0
 public Business()
 {
     factory = new Factory();
     store   = new ShoppingMall();
 }
Ejemplo n.º 2
0
 public Business(iFactoryManagement factory, iStoreManagement seller, int factoryQuota = 100)
 {
     this.factory      = factory;
     this.store        = seller;
     this.factoryQuota = factoryQuota;
 }