コード例 #1
0
ファイル: NotifyService.cs プロジェクト: t4rn/NagiosChecker
 public NotifyService(IOptions <AppSettings> settings)
 {
     _system = new DictionaryItemDTO()
     {
         Code = settings.Value.NotifyName
     };
     _hash = "123";
 }
コード例 #2
0
ファイル: NotifyService.cs プロジェクト: t4rn/FsRescuer
 public NotifyService(Logger log, string notifyName)
 {
     _log    = log;
     _system = new DictionaryItemDTO()
     {
         Code = notifyName,
         Name = notifyName
     };
     _hash = "xxx";
 }