Domain repositories now implementing abstract repository interface

This commit is contained in:
Veljko Tosic
2026-02-11 02:22:13 +01:00
parent b54c72bb42
commit cbacb92d98
4 changed files with 11 additions and 13 deletions

View File

@@ -1,9 +1,9 @@
using AipsCore.Domain.Abstract;
using AipsCore.Domain.Models.Shape.ValueObjects;
namespace AipsCore.Domain.Models.Shape.External;
public interface IShapeRepository
public interface IShapeRepository : IAbstractRepository<Shape, ShapeId>
{
Task<Shape?> Get(ShapeId id, CancellationToken cancellationToken = default);
Task Add(Shape shape, CancellationToken cancellationToken = default);
}