Add an Application layer #2

Merged
Wesser merged 7 commits from feat/application into release/v1.0.0 2024-01-08 16:13:10 +03:00
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);
}