示例#1
0
 public TestNodeService(OneTestDbContext context)
 {
     _context = context;
 }
示例#2
0
 public TestCaseTagService(OneTestDbContext context)
 {
     _context = context;
 }
示例#3
0
 public TestSuiteService(OneTestDbContext context, ITestNodeService nodeService, IMapper mapper)
 {
     _context     = context;
     _nodeService = nodeService;
     _mapper      = mapper;
 }