feat(IRepositoryFactory): create to capsulate repository geenration.
- update DbRepo to use IRepositoryFactory
This commit is contained in:
@@ -0,0 +1,6 @@
|
||||
namespace DigitalData.Core.Abstraction.Application.Repository;
|
||||
|
||||
public interface IRepositoryFactory
|
||||
{
|
||||
public IRepository<TEntity> Get<TEntity>();
|
||||
}
|
||||
Reference in New Issue
Block a user