public static void OnAuditorAdded(Auditor auditor) => AuditorAdded?.Invoke(auditor);
public static void OnAuditorStateChanged(AuditorState oldState, AuditorState newState, Auditor auditor) => AuditorStateChanged?.Invoke(oldState, newState, auditor);
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}"); } }