Exemple #1
0
 public void SetNextSorter(CoinSorter nextSorter)
 {
     this.nextSorter = nextSorter;
 }
Exemple #2
0
 public void SetNextSorter(CoinSorter nextSorter)
 {
     this.nextSorter = nextSorter;
 }
 public CoinSortMachine()
 {
     this.coinSortFirstLink = new PennySorter(coinPockets);
     coinSortFirstLink.SetNextSorter(new NickelSorter(coinPockets));
 }