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