mirror of
https://github.com/meysamhadeli/booking-microservices.git
synced 2026-04-12 03:12:11 +08:00
6 lines
149 B
C#
6 lines
149 B
C#
namespace BuildingBlocks.Mongo;
|
|
|
|
public interface IMongoUnitOfWork<out TContext> : IUnitOfWork<TContext> where TContext : class, IMongoDbContext
|
|
{
|
|
}
|