using XF.Domain.Entities; namespace XF.Domain.Repository; //public interface IRepository : IRepositoryWithTKey // where TEntity : class, IEntity // where TDbContext : class //{ // public TDbContext DbContext { get; init; } //} public interface IRepository : IRepositorySqlSugar where TEntity : class, IEntity, new() { }