public IList <OldCall> Get(string region = "", string codecType = "", string sipAddress = "", string search = "", bool onlyPhoneCalls = false, int callCount = 20)
        {
            // TODO: Remove when world domination is achievied in the NG project
            var oldCalls = _callHistoryRepository.GetOldCallsFiltered(region, codecType, sipAddress, search, false, onlyPhoneCalls, callCount);

            return(oldCalls);
        }
Beispiel #2
0
        public IList <OldCall> Get(string region = "", string codecType = "", string sipAddress = "", string search = "", bool onlyPhoneCalls = false, int callCount = 20)
        {
            var oldCalls = _callHistoryRepository.GetOldCallsFiltered(region, codecType, sipAddress, search, false, onlyPhoneCalls, callCount);

            return(oldCalls);
        }
        public IList <OldCall> Get(string region = "", string codecType = "", string search = "")
        {
            var oldCalls = _callHistoryRepository.GetOldCallsFiltered(region, codecType, "", search, true, false, _settingsManager.LatestCallCount);

            return(oldCalls);
        }
 public IList <OldCall> GetOldCallsFiltered(string region, string codecType, string sipAddress, string searchString, bool anonymize, bool onlyPhoneCalls, int callCount)
 {
     return(_internalRepository.GetOldCallsFiltered(region, codecType, sipAddress, searchString, anonymize,
                                                    onlyPhoneCalls, callCount));
 }