ILog.cs 119 B

12345678
  1. namespace Common.Logger
  2. {
  3. public interface ILog
  4. {
  5. void Trace(string message);
  6. void Debug(string message);
  7. }
  8. }