public ResquestRestoreModule(IRestoreDatabaseService restoreDatabaseService, SimpleDatabaseRestoreDbContext dbContext, IDatabaseBackupFolderScannerService folderScannerService)
        {
            this.folderScannerService = folderScannerService;
            this.restoreDatabaseService = restoreDatabaseService;
            this.dbContext = dbContext;
            this.RequiresWindowsAuthentication();
            
            Get["/RequestRestore"] = ConfirmRestoreRequest;

            Post["/Restore"] = Restore;
        }
 public RestoreDatabaseHub(IRestoreDatabaseService restoreDatabaseService, ILogger log)
 {
     this.restoreDatabaseService = restoreDatabaseService;
     this.log = log;
 }