mirror of
https://github.com/meysamhadeli/booking-microservices.git
synced 2026-04-11 10:32:09 +08:00
9 lines
192 B
C#
9 lines
192 B
C#
using BuildingBlocks.Domain.Model;
|
|
|
|
namespace BuildingBlocks.Mongo;
|
|
|
|
public interface IMongoRepository<TEntity, in TId> : IRepository<TEntity, TId>
|
|
where TEntity : class, IEntity<TId>
|
|
{
|
|
}
|