public CustomIterator(CustomCollection <T> collection)
 {
     this._currentIndex = -1;
     this._collection   = collection;
 }
 public ConcreteIterator(CustomCollection <T> collection)
 {
     _collection = collection;
 }