コード例 #1
0
ファイル: Program.cs プロジェクト: andrewbfeng/UnitTestDemo
 public Business()
 {
     factory = new Factory();
     seller  = new ShoppingMall();
 }
コード例 #2
0
ファイル: Program.cs プロジェクト: andrewbfeng/UnitTestDemo
 public Business(iFactoryManagement factory, iStoreManagement seller, int factoryQuota = 100)
 {
     this.factory      = factory;
     this.store        = seller;
     this.factoryQuota = factoryQuota;
 }