I have been using a base page class with:
protected override void OnInit(EventArgs e)
{
StructureMap.ObjectFactory.BuildUp(this);
base.OnInit(e);
}
The base class approach works on user controls as well, that alone kept me from the module (didn't want to have 2 ways to set it up). For the page it is
public partial class Employee : View, IEmployeeView
{
public ViewPresenter Presenter { get; set; }
private void Page_Load(object sender, EventArgs e){}
}
I inject the view through the constructor. To avoid the circular reference issue on the structuremap config, just use this helper method:
static T GetView<T>()
{
return (T) HttpContext.Current.Handler;
}
On the structuremap config use a convention for both the presenter and the view injection.
