C24.ReVersion.Versioner.Versioner C# (CSharp) Method

Versioner() public method

public Versioner ( IFileSystem fileSystem, IOutput output ) : System
fileSystem IFileSystem
output IOutput
return System
        public Versioner(IFileSystem fileSystem, IOutput output)
        {
            if (fileSystem == null)
            {
                throw new ArgumentNullException("fileSystem");
            }

            if (output == null)
            {
                throw new ArgumentNullException("output");
            }

            this.fileSystem = fileSystem;
            this.output = output;
        }