예제 #1
0
파일: Worker.cs 프로젝트: lulzzz/Grouper
 private void FillLastProcessedDictionary()
 {
     _lastProcessedDictionary =
         _documentDb.GetEntriesByProcessingInterval(min: 1).GetAwaiter().GetResult()
         .ToDictionary(x => x.Document.Id, x => DateTime.Now);
 }