예제 #1
0
 public UnitOfWork(LauThaiDbContext context)
 {
     _context = context;
 }
예제 #2
0
 public AuthRepository(LauThaiDbContext context)
 {
     _context = context;
 }
예제 #3
0
 public FeedbackRepository(LauThaiDbContext context) : base(context)
 {
     _context = context;
 }
 public UniversityRepository(LauThaiDbContext context) : base(context)
 {
     _context = context;
 }
예제 #5
0
 public ProfileRepository(LauThaiDbContext context) : base(context)
 {
     _context = context;
 }
예제 #6
0
 public UserRpository(LauThaiDbContext context) : base(context)
 {
     _context = context;
 }
예제 #7
0
 // private readonly DbSet<T> _dbSet;
 public GenericRepository(LauThaiDbContext context)
 {
     _context = context;
     // _dbSet = _context.Set<T>();
 }