2011年11月21日
摘要: 完全通过配置实现AOP的资料太少了,今天忙了好几个小时终于走通了,分享一下。 模拟业务是:登陆,记录登陆日志。// 业务接口 public interface IStudentManage { bool Login(string userId, string userName); } public class StudentManage:IStudentManage { public StudentManage() { } public bool Login(string userId, string userName) ... 阅读全文
posted @ 2011-11-21 15:39 上善若水123 阅读(1182) 评论(0) 推荐(1) 编辑