Esempio n. 1
0
 public override void Handle(TestEnvironmentCommand command)
 {
     //We're expecting both Configuration and Child_Configuration results to be available
     if (ValidationResults.Count() == 2)
     {
         command.TestedEnvironmentProperties += 10;
     }
 }
Esempio n. 2
0
 public override void Handle(TestEnvironmentCommand command)
 {
     if (Configuration?.ID == 1234)
     {
         command.TestedEnvironmentProperties += 1;
     }
     if (ValidationResults?.Count() > 0)
     {
         command.TestedEnvironmentProperties += 10;
     }
     if (PermanentVault != null)
     {
         command.TestedEnvironmentProperties += 100;
     }
 }