public void Add( VaultClientHelper client, VaultHistoryItemBase historyItem ) { VaultClientFile file = client.Root.FindFileRecursive( historyItem.ID ); if( file == null ) return; string fullPath = file.FullPath; Add( fullPath, fullPath, historyItem.Version, file.Version, historyItem.TxDate, historyItem.UserName, historyItem.Comment ); }
public void Add(VaultClientHelper client, VaultHistoryItemBase historyItem) { VaultClientFile file = client.Root.FindFileRecursive(historyItem.ID); if (file == null) { return; } string fullPath = file.FullPath; Add(fullPath, fullPath, historyItem.Version, file.Version, historyItem.TxDate, historyItem.UserName, historyItem.Comment); }