Beispiel #1
0
        public async Task DeleteByIdAsync(long transactionId)
        {
            await _transactionValidator.IsExistAsync(transactionId);

            await _transactionRepository.DeleteByIdAsync(transactionId);
        }