コード例 #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);
 }