public PerforceFile(PerforceStorage storage, FileInfo fileInfo) : base(storage, fileInfo) { this.storage = storage; }
public PerforceStream(PerforceStorage storage, FileInfo fileInfo, Stream stream) { this.storage = storage; this.fileInfo = fileInfo; this.stream = stream; }
public PerforceDirectory(PerforceStorage storage, DirectoryInfo directoryInfo) : base(storage, directoryInfo) { this.storage = storage; }