예제 #1
0
 public static void Warning(this IReportsCoordinator reportCoordinator, string reportKey, string message)
 {
     reportCoordinator.Add(reportKey, ReportEntryType.Warning, message);
 }
예제 #2
0
 public static void Information(this IReportsCoordinator reportCoordinator, string reportKey, string message)
 {
     reportCoordinator.Add(reportKey, ReportEntryType.Information, message);
 }