11 lines
214 B
C#
11 lines
214 B
C#
namespace MyOffice.Data.Repositories;
|
|
|
|
using DbContext;
|
|
|
|
public class AppRepository<TEntity> : RepositoryBase<TEntity> where TEntity : class
|
|
{
|
|
public AppRepository(AppDbContext context) : base(context)
|
|
{
|
|
}
|
|
}
|