12 lines
406 B
C#
12 lines
406 B
C#
using OAService.Infrastructure.DAL.Context;
|
|
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)
|
|
{
|
|
}
|
|
} |