2025-03-15 01:39:43 +03:30

9 lines
193 B
C#

using BuildingBlocks.Core.Model;
namespace BuildingBlocks.Mongo;
public interface IMongoRepository<TEntity, in TId> : IRepository<TEntity, TId>
where TEntity : class, IAggregate<TId>
{
}