示例#1
0
 public UnitOfWork(MONITOREDContext context)
 {
     _context = context;
 }
示例#2
0
 public UserRepository(MONITOREDContext context) : base(context)
 {
 }
 public BaseRepository(MONITOREDContext context)
 {
     _context  = context;
     _entities = _context.Set <T>();
 }