Example #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;
 }
Example #2
0
 internal void increase_item_quantity_by(Quantity quantity)
 {
     throw new NotImplementedException();
 }
Example #3
0
 internal bool is_satisfied_by(Quantity item_quantity)
 {
     throw new NotImplementedException();
 }
Example #4
0
 internal bool is_satisfied_by(Quantity item_quantity)
 {
     throw new NotImplementedException();
 }
Example #5
0
 internal bool contains_more_than(Quantity quantity_threshold)
 {
     throw new NotImplementedException();
 }
Example #6
0
 public Quantity add(Quantity quantity)
 {
     throw new NotImplementedException();
 }