コード例 #1
0
ファイル: GoodRepository.cs プロジェクト: CSTranquility/Test1
 public bool ContainsGood(Good good)
 {
     return(Goods.Contains(good));
 }
コード例 #2
0
ファイル: WendingMachine.cs プロジェクト: CSTranquility/Test1
 public void BuyGood(Good good, int count)
 {
     if (good != null && good.Count != 0)
     {
     }
 }
コード例 #3
0
 public Order(Good good, int count)
 {
     Good  = good;
     Count = count;
 }