接上文 項目架構(gòu)開發(fā):數(shù)據(jù)訪問層之Cache
本章我們繼續(xù)ILogger的開發(fā)
ILogger.cs
1 public interface ILogger 2 { 3 void Info(object message); 4 void Info(object message, Exception e); 5 void Debug(object message); 6 void Debug(object message, Exception e); 7 void Warn(object message); 8 void Warn(object message, Exception e); 9&nbs