15 lines
368 B
C#
15 lines
368 B
C#
using System.Threading;
|
|
using System.Threading.Tasks;
|
|
using Knot.Modules.Auth.Domain;
|
|
using Microsoft.EntityFrameworkCore;
|
|
using Microsoft.EntityFrameworkCore.Infrastructure;
|
|
|
|
namespace Knot.Modules.Auth.Application.Abstractions;
|
|
|
|
public interface IAuthDbContext
|
|
{
|
|
DbSet<User> Users { get; }
|
|
Task<int> SaveChangesAsync(CancellationToken cancellationToken);
|
|
}
|
|
|