6 lines
207 B
C#
6 lines
207 B
C#
|
|
namespace Brizco.Repository.Repositories.UnitOfWork;
|
|||
|
|
|
|||
|
|
public interface IUnitOfWork : IScopedDependency
|
|||
|
|
{
|
|||
|
|
System.Threading.Tasks.Task SaveChangesAsync(CancellationToken cancellationToken = default);
|
|||
|
|
}
|