public IEnumerable<SystemLogging> GetSystemLogging()
        {
            var callLogEntryData = new SystemLoggingAccess(GetDataAccess());

            return callLogEntryData.GetSystemLogging();
        }
        public IEnumerable<SystemLogging> GetDates(DateTime beginDate, DateTime endDate)
        {
            var callLogEntryData = new SystemLoggingAccess(GetDataAccess());

            return callLogEntryData.GetDates(beginDate, endDate);
        }