Initial
This commit is contained in:
@ -0,0 +1,11 @@
|
||||
using OAService.Infrastructure.DAL.Repository;
|
||||
using StandManager.Infrastructure.DAL.Context;
|
||||
|
||||
namespace StandManager.Service.Repository;
|
||||
|
||||
public class StandManagerGenericRepository<T> : GenericRepository<T>, IStandManagerGenericRepository<T> where T : class
|
||||
{
|
||||
public StandManagerGenericRepository(StandManagerDbContext context) : base(context)
|
||||
{
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user