Esempio n. 1
0
        public TestResultController(
            ITestResultCommandHandler testResultCommandHandler,
            ITestResultQueries testResultQueries)

        {
            _testResultCommandHandler = testResultCommandHandler;
            _testResultQueries        = testResultQueries;
        }
 public UploadTestResultCommandHandler(
     IProjectCommandHandler projectCommandHandler,
     IBuildCommandHandler buildCommandHandler,
     ITestResultCommandHandler testResultCommandHandler)
 {
     _projectCommandHandler    = projectCommandHandler;
     _buildCommandHandler      = buildCommandHandler;
     _testResultCommandHandler = testResultCommandHandler;
 }