public Business() { factory = new Factory(); store = new ShoppingMall(); }
public Business(iFactoryManagement factory, iStoreManagement seller, int factoryQuota = 100) { this.factory = factory; this.store = seller; this.factoryQuota = factoryQuota; }