Exemplo n.º 1
0
 public void SetNextSorter(CoinSorter nextSorter)
 {
     this.nextSorter = nextSorter;
 }
Exemplo n.º 2
0
 public void SetNextSorter(CoinSorter nextSorter)
 {
     this.nextSorter = nextSorter;
 }
Exemplo n.º 3
0
 public CoinSortMachine()
 {
     this.coinSortFirstLink = new PennySorter(coinPockets);
     coinSortFirstLink.SetNextSorter(new NickelSorter(coinPockets));
 }