implement
This commit is contained in:
9
dotnet/AipsCore/Domain/Models/Shape/External/IShapeRepository.cs
vendored
Normal file
9
dotnet/AipsCore/Domain/Models/Shape/External/IShapeRepository.cs
vendored
Normal file
@@ -0,0 +1,9 @@
|
||||
using AipsCore.Domain.Models.Shape.ValueObjects;
|
||||
|
||||
namespace AipsCore.Domain.Models.Shape.External;
|
||||
|
||||
public interface IShapeRepository
|
||||
{
|
||||
Task<Shape?> Get(ShapeId id, CancellationToken cancellationToken = default);
|
||||
Task Add(Shape shape, CancellationToken cancellationToken = default);
|
||||
}
|
||||
Reference in New Issue
Block a user