Esempio n. 1
0
 public static void OnAuditorAdded(Auditor auditor)
 => AuditorAdded?.Invoke(auditor);
Esempio n. 2
0
 public static void OnAuditorStateChanged(AuditorState oldState, AuditorState newState, Auditor auditor)
 => AuditorStateChanged?.Invoke(oldState, newState, auditor);
Esempio n. 3
0
 private void OnAuditorStateChanged(AuditorState oldState, AuditorState newState, Auditor auditor)
 {
     if (newState == AuditorState.Completed)
     {
         //int removedReports = Services.SecretaryService.GetReportInfo(auditor.GeneratorId).RemoveReports(auditor.Count);
         //UDBG.Log($"reports handled count => {removedReports}");
     }
 }