feat: add an interface for standard saving changes

This commit is contained in:
Polianin Nikita 2024-01-08 14:43:05 +03:00
parent f7998a1798
commit 8028d40005

View File

@ -0,0 +1,9 @@
using System.Threading.Tasks;
using System.Threading;
namespace Mirea.Api.DataAccess.Application.Interfaces.DbContexts;
public interface IDbContextBase
{
Task<int> SaveChangesAsync(CancellationToken cancellationToken);
}