Example #1
0
        public DataTableLoader CreateDataTableLoader(string name)
        {
            DataTableLoader dataTableLoader = new DataTableLoader(this.ProfileLoader, string.IsNullOrEmpty(this.ProfileName) ? name : this.ProfileName);

            foreach (string text in this.InputValues.Keys)
            {
                dataTableLoader.InputValue(text, this.InputValues[text]);
            }
            return(dataTableLoader);
        }