MVC 全局变量及构造函数

DBLogController.cs: 
#region 全局变量及构造器 

IDBLogRepository dblog; 

public DBLogController(): this(new DBLogRepository()) 



public DBLogController(DBLogRepository dblog) 

this.dblog = dblog; 


#endregion 



DBLogRepository.cs: 
public class DBLogRepository : IDBLogRepository 

DBLogDataContext dblog; 

public DBLogRepository() 

dblog = new DBLogDataContext(); 
}

posted on 2011-10-18 15:13  cw_volcano  阅读(1477)  评论(0编辑  收藏  举报