Guest User

Untitled

a guest
Feb 20th, 2018
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.31 KB | None | 0 0
  1. public class DomainRegistry : Registry {
  2.  
  3.    protected override void configure() {
  4.  
  5.     ForRequestedType<ICategoryService>()
  6.  
  7.        .TheDefaultIsConcreteType<CategoryService>();
  8.  
  9.  
  10.    ForRequestedType<ICategoryRepository>()
  11.  
  12.       .TheDefaultIsConcreteType<CategoryRepository>();
  13.  
  14.  
  15.         }
  16.  
  17.     }
Add Comment
Please, Sign In to add comment