I think I'd be easier to just write down my pseudo-class declaration.
Basically, I want something like
public class DatabaseControlsDAL<T> : T, IDatabaseControlsDAL where T : IBaseDAL
{
public int myMethod()
{
return somePublicPropertyInTheIBaseDALInterface;
}
}
But it won't work :(
Any help welcome !