public IEnumerable<CallLogEntrySelect> GetDates(DateTime beginDate, DateTime endDate)
        {
            var callLogEntryDate = new CallLogEntrySelectAccess(GetDataAccess());

            return callLogEntryDate.GetDates(beginDate, endDate);
        }
        public IEnumerable<CallLogEntrySelect> GetCallLogEntryData()
        {
            var callLogEntryData = new CallLogEntrySelectAccess(GetDataAccess());

            return callLogEntryData.GetCallLogEntryData();
        }
        public IEnumerable<CallLogEntrySelect> GetCallLogEntry(Guid id)
        {
            var callLogEntry = new CallLogEntrySelectAccess(GetDataAccess());

            return callLogEntry.GetCallLogEntry(id);
        }