Beispiel #1
0
 public ArchiveController(IArchiveService archives, VulnerabilityDBContext db, MpcDBContext mpcConfigDB, MPCMissingPatchDbContext mpcPatchDB)
 {
     this.archives    = archives;
     this.db          = db;
     this.mpcConfigDB = mpcConfigDB;
     this.mpcPatchDB  = mpcPatchDB;
 }
 public VulnerabilityController(IVulnerabilityService vulnerabilities, VulnerabilityDBContext db, MpcDBContext mpcConfigDB, MPCMissingPatchDbContext mpcPatchDB)
 {
     this.vulnerabilities = vulnerabilities;
     this.db          = db;
     this.mpcConfigDB = mpcConfigDB;
     this.mpcPatchDB  = mpcPatchDB;
 }
Beispiel #3
0
 public ExportController(IVulnerabilityService vulnerabilities, IServerService servers, IHostingEnvironment hostingEnvironment,
                         VulnerabilityDBContext db, MpcDBContext mpcConfigDB, MPCMissingPatchDbContext mpcPatchDB)
 {
     this.vulnerabilities = vulnerabilities;
     this.servers         = servers;
     _hostingEnvironment  = hostingEnvironment;
     this.db          = db;
     this.mpcConfigDB = mpcConfigDB;
     this.mpcPatchDB  = mpcPatchDB;
 }
Beispiel #4
0
 public ServerService(VulnerabilityDBContext db, MpcDBContext mpcConfigDB, MPCMissingPatchDbContext mpcPatchDB)
 {
     this.db          = db;
     this.mpcConfigDB = mpcConfigDB;
     this.mpcPatchDB  = mpcPatchDB;
 }
Beispiel #5
0
 public DataLoad(VulnerabilityDBContext context, MpcDBContext mpcConfigContext, MPCMissingPatchDbContext mpcPatchContext)
 {
     this.context          = context;
     this.mpcConfigContext = mpcConfigContext;
     this.mpcPatchContext  = mpcPatchContext;
 }
Beispiel #6
0
 public ArchiveMpcConfigController(IArchiveService archives, MpcDBContext mpcConfigDB)
 {
     this.archives    = archives;
     this.mpcConfigDB = mpcConfigDB;
 }