次のインターフェイスを持っている
public interface IFoo<T> : IComparable<IPayRecordField<T>> where T : IComparable
IFoo のすべてのプロパティを実装 Foo で自動入力したい。ストラクチャーマップの使用
例
class SomeClass
{
IFoo<string> MyFoo {get; set;} //this should be autofilled by structuremap with an instance of Foo<string>
}