feat(IRepositoryFactory): create to capsulate repository geenration.

- update DbRepo to use IRepositoryFactory
This commit is contained in:
2025-09-10 17:48:16 +02:00
parent 7d3d3b5ae9
commit 272650d991
2 changed files with 10 additions and 4 deletions

View File

@@ -0,0 +1,6 @@
namespace DigitalData.Core.Abstraction.Application.Repository;
public interface IRepositoryFactory
{
public IRepository<TEntity> Get<TEntity>();
}