refactor: remove IRepository and DbRepository

This commit is contained in:
2025-10-22 17:34:28 +02:00
parent 1febae72c2
commit 90ce4e487c
5 changed files with 0 additions and 154 deletions

View File

@@ -99,12 +99,6 @@ public interface IRepository<TEntity>
IQueryable<TEntity> ReadOnly();
#endregion
}
public interface IRepository
{
IRepository<TEntity> Entity<TEntity>() where TEntity : IEntity;
}
#if NETFRAMEWORK
}
#endif