Question

public partial class DataPage : System.Web.UI.Page
{
    IPersonPresenter presenter = null;

    public DataPage(IPersonPresenter presenter)
    {
        if (presenter == null) throw new Exception("Didn't receiver the presenter");

        this.presenter = presenter;
    }
}

I need to pass presenter as a Dependency Injection paramter for this ASP.Net web forms class. I tried Global.asax but couldn't find a factory or anything similar. Please help. Thanks.

No correct solution

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top