Exemple #1
0
 public LayoutInvestigationViewModel(InvestigationFacade investigationFacade, HangfireFacade hangfireFacade, CaptureFacade captureFacade, ExportFacade exportFacade)
 {
     this.InvestigationFacade = investigationFacade;
     this.HangfireFacade      = hangfireFacade;
     this.CaptureFacade       = captureFacade;
     this.ExportFacade        = exportFacade;
 }
 public ExportOverviewWebmailsViewModel(
     InvestigationFacade investigationFacade,
     HangfireFacade hangfireFacade,
     CaptureFacade captureFacade,
     ExportFacade exportFacade,
     SnooperWebmailsWeb snooperInfo) : base(investigationFacade, hangfireFacade, captureFacade, exportFacade)
 {
     this.SnooperInfo = snooperInfo;
 }
 public InvestigationOverviewViewModel(InvestigationFacade investigationFacade, UserFacade userFacade) : base(investigationFacade, userFacade)
 {
     this.Helper = new FilteredListPageHelper <InvestigationDTO, Guid, InvestigationFilterDTO>(this.investigationFacade)
     {
         DefaultSortOptions = new SortingOptions()
         {
             SortExpression = nameof(InvestigationDTO.Id)
         }
     };
 }
 public ExportDNSViewModel(
     InvestigationFacade investigationFacade,
     HangfireFacade hangfireFacade,
     CaptureFacade captureFacade,
     ExportFacade exportFacade,
     SnooperDNSWeb snooperInfo,
     ExportDNSFacade exportFTPFacade) : base(investigationFacade, hangfireFacade, captureFacade, exportFacade)
 {
     this.SnooperInfo     = snooperInfo;
     this.ExportDNSFacade = exportFTPFacade;
 }
 public CaptureViewModel(InvestigationFacade investigationFacade, HangfireFacade hangfireFacade, CaptureFacade captureFacade, ExportFacade exportFacade) : base(investigationFacade, hangfireFacade, captureFacade, exportFacade)
 {
 }
 public InvestigationsViewModel(InvestigationFacade investigationFacade, UserFacade userFacade)
 {
     this.investigationFacade = investigationFacade;
     this.userFacade          = userFacade;
 }