摘要:
public class StaffController : Controller { private ITest _test; //构造函数注入 public StaffController(ITest test) { this._test = test; }}public class LeaveController : Controller { //属性注入 public ITest Test { get; set; ... 阅读全文
摘要:
builder.RegisterModule(new ConfigurationSettingsReader()); 需要注册上面一句才能读到.config里的节点,xml配置方式如下 Module的demo 代码using System;using System.Collections.Generic;using System.Linq;using System.Web;using Autofac;using MvcApp.BLL;using MvcApp.... 阅读全文