Beispiel #1
0
 private void ValidateAccount(IAccountingPipelineContext e)
 {
 }
 public void ValidateAccount(IAccountingPipelineContext e)
 {
     System.Console.WriteLine("ValidateAccount2Module -> Executing ValidateAccount - Highest Version");
     e.Messages.Add("Highest Version.");
 }
 public void SetTrialBalance(IAccountingPipelineContext e)
 {
     Console.WriteLine("ValidateAccount4Module -> Executing SetTrialBalance - From Another Assembly.");
     throw new NotImplementedException("This error should not break the pipeline.");
 }
 public void ValidateAccount(IAccountingPipelineContext e)
 {
     System.Console.WriteLine("ValidateAccount3Module -> Executing ValidateAccount - Same module but different namespace.");
     e.Messages.Add("Same module but different namespace.");
 }
 public void ValidateAccount(IAccountingPipelineContext e)
 {
     Console.WriteLine("ValidateAccount4Module -> Executing ValidateAccount - From Another Assembly.");
     e.Messages.Add("Module from another assembly.");
 }