7 lines
163 B
C#
7 lines
163 B
C#
namespace Mccn.Modules.Hello.Application.Abstractions;
|
|
|
|
public interface IUnitOfWork
|
|
{
|
|
Task SaveChangesAsync(CancellationToken cancellationToken = default);
|
|
}
|