Example #1
0
 public IList <OldCall> Post()
 {
     return(_callHistoryRepository.GetOldCalls(_settingsManager.LatestCallCount, true));
 }
 public IList <OldCall> GetOldCalls(int callCount, bool anonymize)
 {
     return(_lazyCache.GetOrAddCallHistory(() => _internalRepository.GetOldCalls(callCount, anonymize)));
 }