Пример #1
0
 public Business()
 {
     factory = new Factory();
     seller  = new ShoppingMall();
 }
Пример #2
0
 public Business(iFactoryManagement factory, iStoreManagement seller, int factoryQuota = 100)
 {
     this.factory      = factory;
     this.store        = seller;
     this.factoryQuota = factoryQuota;
 }