public FileGenerator(string packageName, string packageRoot, string actionfilepath) { this._packageName = packageName; this._packageRoot = packageRoot; this.analyzer = new DefaultRelationshipAnalyzer(actionfilepath); }
public FileGenerator(string packageName, string packageRoot) { this._packageName = packageName; this._packageRoot = packageRoot; this.analyzer = new DefaultRelationshipAnalyzer(FileGenerator.DEFAULTACTIONFILEPATH); }
//CONSTRUCTORS #region Constructors public FileGenerator() { this._packageName = FileGenerator.DEFAULTPACKAGENAME; this._packageRoot = FileGenerator.DEFAULTPACKAGEROOT; this.analyzer = new DefaultRelationshipAnalyzer(FileGenerator.DEFAULTACTIONFILEPATH); }