2013年10月25日
摘要: public class StaffController : Controller { private ITest _test; //构造函数注入 public StaffController(ITest test) { this._test = test; }}public class LeaveController : Controller { //属性注入 public ITest Test { get; set; ... 阅读全文
posted @ 2013-10-25 11:35 聪明的大熊 阅读(472) 评论(0) 推荐(0) 编辑
摘要: 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.... 阅读全文
posted @ 2013-10-25 11:19 聪明的大熊 阅读(345) 评论(0) 推荐(0) 编辑