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

6 lines
149 B
C#

namespace BuildingBlocks.Mongo;
public interface IMongoUnitOfWork<out TContext> : IUnitOfWork<TContext> where TContext : class, IMongoDbContext
{
}