Add project files.
This commit is contained in:
@@ -0,0 +1,10 @@
|
||||
namespace MyOffice.Data.Repositories;
|
||||
|
||||
using DbContext;
|
||||
|
||||
public class AppRepository<TEntity> : RepositoryBase<TEntity> where TEntity : class
|
||||
{
|
||||
public AppRepository() : base(AppDbContextFactory.Instance.CreateDbContext())
|
||||
{
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user