mirror of
https://github.com/meysamhadeli/booking-microservices.git
synced 2026-04-12 03:12:11 +08:00
9 lines
193 B
C#
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>
|
|
{
|
|
}
|