Anapher/Strive

View on GitHub
src/Services/ConferenceManagement/Strive.Infrastructure/KeyValue/Abstractions/IKeyValueDatabaseTransaction.cs

Summary

Maintainability
A
0 mins
Test Coverage
using System;
using System.Threading.Tasks;

namespace Strive.Infrastructure.KeyValue.Abstractions
{
    public interface IKeyValueDatabaseTransaction : IKeyValueDatabaseActions, IDisposable
    {
        ValueTask<bool> ExecuteAsync();
    }
}