コード例 #1
0
        public IEnumerable<CallLogEntrySelect> GetDates(DateTime beginDate, DateTime endDate)
        {
            var callLogEntryDate = new CallLogEntrySelectAccess(GetDataAccess());

            return callLogEntryDate.GetDates(beginDate, endDate);
        }
コード例 #2
0
        public IEnumerable<CallLogEntrySelect> GetCallLogEntryData()
        {
            var callLogEntryData = new CallLogEntrySelectAccess(GetDataAccess());

            return callLogEntryData.GetCallLogEntryData();
        }
コード例 #3
0
        public IEnumerable<CallLogEntrySelect> GetCallLogEntry(Guid id)
        {
            var callLogEntry = new CallLogEntrySelectAccess(GetDataAccess());

            return callLogEntry.GetCallLogEntry(id);
        }