Пример #1
0
 public void Log <T>(string pattern, string ex)
 {
     DebugLogs.Add(new DebugLog {
         Pattern = pattern, Class = typeof(T).ToString(), Execution = ex
     });
     OnEntry?.Invoke(e);
 }
Пример #2
0
 protected void RaiseOnEntry(T entry)
 {
     Result = entry;
     OnEntry?.Invoke(entry);
 }