Guest User

Untitled

a guest
Jun 18th, 2018
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.22 KB | None | 0 0
  1. using StructureMap.Configuration.DSL;
  2. namespace SMSample
  3. {
  4.     public class LoggingRegistry : Registry
  5.     {
  6.         public LoggingRegistry()
  7.         {
  8.             For<ILogger>().Use(new NLogLogger());
  9.         }
  10.     }
  11. }
Add Comment
Please, Sign In to add comment