/source/app/NOS.Registration/ILogger.cs

http://github.com/agross/netopenspace · C# · 9 lines · 9 code · 0 blank · 0 comment · 0 complexity · 5437ec8b8f6798b09f030f21e730216d MD5 · raw file

  1. namespace NOS.Registration
  2. {
  3. public interface ILogger
  4. {
  5. void Error(string message, string username);
  6. void Info(string message, string username);
  7. void Warning(string message, string username);
  8. }
  9. }