コード例 #1
0
 public bool is_satisfied_by(Quantity item_quantity, Country country)
 {
     if (item_quantity.contains_more_than(quantity_threshold))
         return false;
     else
         return true;
 }
コード例 #2
0
ファイル: BasketItem.cs プロジェクト: elbandit/PPPDDD
 internal void increase_item_quantity_by(Quantity quantity)
 {
     throw new NotImplementedException();
 }
コード例 #3
0
 internal bool is_satisfied_by(Quantity item_quantity)
 {
     throw new NotImplementedException();
 }
コード例 #4
0
 internal bool is_satisfied_by(Quantity item_quantity)
 {
     throw new NotImplementedException();
 }
コード例 #5
0
 internal bool contains_more_than(Quantity quantity_threshold)
 {
     throw new NotImplementedException();
 }
コード例 #6
0
 public Quantity add(Quantity quantity)
 {
     throw new NotImplementedException();
 }