How an Interface like IEnumerable or IQuerable can store data into itself?
or for example where this Tables go on `IQueryable?
and How can I have an Interface like that for myself ?
public Interface IMyNumerator<T>
{
}
IMyNumerator<int> mynumbers;
how can I fill mynumbers with some Int values ??