public ExecutionTestsController(ExecutionTestsDBContext dbContext, IExecutionTestsLogicService executionTestsLogicService)
 {
     _dbContext = dbContext;
     _executionTestsLogicService = executionTestsLogicService;
 }
예제 #2
0
 public ExecutionTestsRepository(ExecutionTestsDBContext dbContext)
 {
     _dbContext = dbContext;
 }
예제 #3
0
 public ExecutionTestsController(ExecutionTestsDBContext dbContext)
 {
     _dbContext = dbContext;
 }