public XmlImporter(string name, string path, string relativePath, string sourceURI, XmlRowInserter xmlRowInserter, string rootElementName, string rowElementName)
            : base(name, path, relativePath, sourceURI)
        {
            _xmlRowInserter = xmlRowInserter;
            _rootElementName = rootElementName;
            _rowElementName = rowElementName;

            _xmlRowInserter.XmlImporter = this;
        }
Esempio n. 2
0
        public XmlImporter(string name, string path, string relativePath, string sourceURI, XmlRowInserter xmlRowInserter, string rootElementName, string rowElementName)
            : base(name, path, relativePath, sourceURI)
        {
            _xmlRowInserter  = xmlRowInserter;
            _rootElementName = rootElementName;
            _rowElementName  = rowElementName;

            _xmlRowInserter.XmlImporter = this;
        }