Exemplo n.º 1
0
 public KeyedDecoratorModule(KeyedDecoratorRegistrationData data)
 {
     this.data = data;
 }
Exemplo n.º 2
0
 private KeyedDecoratorRegistrationBuilder(KeyedDecoratorRegistrationData data)
 {
     this.data = data;
     data.CheckModuleRegistration <TInterface>(data);
 }
Exemplo n.º 3
0
 public void CheckModuleRegistration <TInterface>(KeyedDecoratorRegistrationData data)
 {
     builder.RegisterModule(new KeyedDecoratorModule <TInterface>(data));
 }