Exemplo n.º 1
0
 public ExerciseController(IExercisesContext ctx, IExerciser exerciser, IQueryTester tester) :
     base(ctx)
 {
     _context   = ctx;
     _exerciser = exerciser;
     _tester    = tester;
 }
Exemplo n.º 2
0
 public EntityTests()
 {
     executor  = new QueryExecutor();
     tester    = new QueryTester(executor);
     exerciser = new Exerciser(executor);
 }