Files
behavioral-patterns/src/IteratorPattern/TVExample/TvIterator/TV.cs
2016-07-14 12:21:16 +03:00

17 lines
381 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
namespace IteratorPattern.TvIterator
{
/// <summary>
/// Aggregate interface - get iterator
/// The Aggregate defines an interface for the creation of the Iterator object.
/// </summary>
public interface TV
{
ChannelIterator GetIterator();
}
}