Release v1.0.0 #16

Merged
Wesser merged 492 commits from release/v1.0.0 into master 2025-02-12 09:19:32 +03:00
13 changed files with 159 additions and 1 deletions
Showing only changes of commit 8028d40005 - Show all commits

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);
}