/// <summary> /// Initializes a new instance of the <see cref="T:DalGenerator"/> class. /// </summary> /// <param name="dalContent">Content of the dal.</param> public DalGenerator(string dalContent) { _extractor = new DalExtractor(dalContent); }
/// <summary> /// Initializes a new instance of the <see cref="T:DalGenerator"/> class. /// </summary> /// <param name="filePath">The file path.</param> /// <param name="isVirtual">if set to <c>true</c> [is virtual].</param> public DalGenerator(string filePath, bool isVirtual) { _extractor = new DalExtractor(filePath, isVirtual); }