I should start by saying that I am very much a noobie with interfaces so this might be a really dumb question. Also apologies if my Title is unclear - matches the state of my mind!
I do understand the principles behind interfaces and I am want to use them here both to support unit testing and also decoupling via a DI Framework in what is horribly messy and un-testable legacy code.
I have an inteface called IDatHandler. It has a List<> property called Items. The concrete implementations should return a concrete type of IDatContainer. There are some methods of course but I have left them out
public interface IDatHandler
{
....
List<IDatContainer> Items
{
get; set;
}
}
This is a concrete implementation:
public class ADEColorHandler : IDatHandler
{
....
public List<ADEColor> Items
{
get; set;
}
}
}
ADEColor implements IDatContainer. The concrete implementation fails unless I replace ADEColor with IDatContainer.
Is there a way to get Items returned as a list of type ADEColor or am I just breaking the rules?
I should have said that this app is currently using NET 3.5
=========>>> The Answer - thanks Charleh!
The IDatHandler Interface
public interface IDatHandler<T> where T : IDatContainer
{
....
List<IDatContainer> Items
{
get; set;
}
}
The concrete Class:
public class ADEColorHandler : IDatHandler<ADEColor>
{
....
public List<ADEColor> Items
{
get; set;
}
}
}
My units tests on ADEColorHandler Assert against this list and pass.

List<IDatContainer>should really beList<T>- probably just a typo! – Charleh Dec 5 '12 at 21:39