public Checkout(IDiscounter discounter, IPriceFinder priceFinder)
 {
     _discounter  = discounter;
     _priceFinder = priceFinder;
     _total       = 0;
 }
コード例 #2
0
ファイル: Checkout.cs プロジェクト: vashisht/CheckOutKata
 public Checkout(IDiscounter discounter, IPriceFinder priceFinder)
 {
     _discounter = discounter;
     _priceFinder = priceFinder;
     _total = 0;
 }
コード例 #3
0
ファイル: Watcher.cs プロジェクト: yardenGoldy/DiscountAlert
 public Watcher(IGEWebDriver webDriver, IPriceFinder priceFinder)
 {
     _priceFinder = priceFinder;
     _webDriver   = webDriver;
     InitDomainDictionary();
 }