Am trying out structuremap for the first time and am getting the following compiler error,
StructureMap Exception Code: 202
No Default Instance defined for PluginFamily Super.SuperCore.Core.DataAccess.IPersonRepository, Super.SuperCore, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
The place where am calling the interface:
private IPersonRepository _iPersonRepository;
public void Init() {
_iPersonRepository = ObjectFactory.GetInstance<IPersonRepository>();
}
My Interface Declaration:
[PluginFamily("Default")]
public interface IPersonRepository
{
List<string> getAllNames();
}
My StructureMap.config:
<?xml version="1.0" encoding="utf-8" ?>
<StructureMap>
<Assembly Name="Super.SuperWeb" />
<Assembly Name="Super.SuperCore" />
</StructureMap>
Can anyone point out where exactly am I going wrong.