Ejemplo n.º 1
0
        public async Task <IEnumerable <ExceptionLog> > SelectCurrentExceptionData(int count, int pageIndex)
        {
            var list = new List <ExceptionLog>();

            list = await exceptionLogRepository.SelectExceptionData(count, pageIndex);

            return(list);
        }