摘要:
依赖注入研究:View Code public class BaseBusiness { protected ITSysOperationLogDal buLog; public BaseBusiness(ITSysOperationLogDal log) { this.buLog = log; } /// <summary> /// 返回T类型的实体,T需要继承BaseBusiness /// 默认container节点名称为业务类名称 /// </s... 阅读全文