MireaBackend/Application/Interfaces/DbContexts/IDbContextBase.cs

9 lines
229 B
C#

using System.Threading;
using System.Threading.Tasks;
namespace Mirea.Api.DataAccess.Application.Interfaces.DbContexts;
public interface IDbContextBase
{
Task<int> SaveChangesAsync(CancellationToken cancellationToken);
}