Example #1
0
 public MachineRepository(RemoteControllerContext dbContext) : base(dbContext)
 {
 }
 public LogRepository(RemoteControllerContext dbContext) : base(dbContext)
 {
 }
Example #3
0
 public UnitOfWork(RemoteControllerContext context)
 {
     _context = context;
 }
Example #4
0
 public Repository(RemoteControllerContext dbContext)
 {
     DbContext = dbContext;
     DbSet     = DbContext.Set <TEntity>();
 }