12 lines
326 B
C#
12 lines
326 B
C#
using Knot.Modules.Auth.Contracts.Domain;
|
|
using Knot.Shared.Kernel;
|
|
|
|
namespace Knot.Modules.Auth.Contracts.Application.Abstractions;
|
|
|
|
public interface IAuthUnitOfWork : IUnitOfWork
|
|
{
|
|
IUserRepository UserRepository { get; }
|
|
void Add(UserContract user);
|
|
Task<int> SaveChangesAsync(CancellationToken ct = default);
|
|
}
|