8 lines
236 B
C#
8 lines
236 B
C#
using AipsCore.Domain.Common.ValueObjects;
|
|
|
|
namespace AipsCore.Domain.Abstract;
|
|
|
|
public interface ISoftDeletableRepository<in TId> where TId : DomainId
|
|
{
|
|
Task SoftDeleteAsync(TId id, CancellationToken cancellationToken = default);
|
|
} |