public NonConfCorrActionsTest(FixturesTestNonConf fixture)
 {
     _nonConfCorrActionsService = fixture.ServiceProvider.GetRequiredService <INonConfCorrActionsService>();
     _nonConfService            = fixture.ServiceProvider.GetRequiredService <INonConfService>();
     _corrActionService         = fixture.ServiceProvider.GetRequiredService <ICorrActionService>();
     _context = fixture.ServiceProvider.GetRequiredService <DataContext>();
 }
示例#2
0
 public CorrActionController(ICorrActionService corrActionService)
 {
     _corrActionService = corrActionService;
 }