Guest User

Untitled

a guest
Feb 20th, 2018
99
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.36 KB | None | 0 0
  1. using StructureMap;
  2. using StructureMap.Configuration.DSL;
  3. using StructureMap.Configuration;
  4. using StructureMap.Pipeline;
  5.  
  6.  
  7. namespace SupplierManual.Data.config
  8. {
  9.     public class DataRegistry : Registry
  10.     {
  11.         public DataRegistry()
  12.         {
  13.             ForRequestedType<IRepository>().TheDefaultIsConcreteType<Repository>();
  14.         }
  15.  
  16.     }
  17. }
Add Comment
Please, Sign In to add comment