コード例 #1
0
 public OrderCalculator2(
     ICanDiscountStrategy canDiscountStrategy,
     IGetDiscountStrategy getDiscountStrategy)
 {
     this.canDiscountStrategy = canDiscountStrategy;
     this.getDiscountStrategy = getDiscountStrategy;
 }
コード例 #2
0
ファイル: Casher.cs プロジェクト: Suki214/LearnOOP
 public Casher(IGetDiscountStrategy getDiscountStrategy)
 {
     DiscountStrategy = getDiscountStrategy;
 }