예제 #1
0
        public async Task <bool> ExistAsync(Guid id)
        {
            var request = await _context.
                          FindAsync <IdempotencyTransactionLog>(id);

            return(request != null);
        }