私はそのようなページを持っています -
public partial class ProductDetailMixed : SessionPage, IProductDetailMixedView
{
public IProductService ProductService { get; set; }
protected void Page_Load(object sender, EventArgs e)
{
Controller = new ProductDetailMixedController(this, ProductService);
OnLoadPage();
}
public event LoadPageEvent OnLoadPage;
public IProductDetailMixedController Controller { get; set; }
}
プロパティの注入があるため、IProductService のインスタンスがページに注入されますが、私が本当に望むのは、そのようにコントローラーを作成することです -
Controller = new ProductDetailMixedController(this);
そして、ProductDetailMixedController のコンストラクターは、残りのすべてのパラメーターを注入するだけです..しかし、どうすればこれを行うことができますか??