Esempio n. 1
0
 /// <summary>
 /// Creates a table import from the given module name, field and table type.
 /// </summary>
 /// <param name="ModuleName">The name of the module from which a value is imported.</param>
 /// <param name="FieldName">The name of the value that is imported.</param>
 /// <param name="Table">A description of the imported table.</param>
 public ImportedTable(string ModuleName, string FieldName, TableType Table)
     : base(ModuleName, FieldName)
 {
     this.Table = Table;
 }
Esempio n. 2
0
 /// <summary>
 /// Creates a table import from the given module name, field and table type.
 /// </summary>
 /// <param name="moduleName">The name of the module from which a value is imported.</param>
 /// <param name="fieldName">The name of the value that is imported.</param>
 /// <param name="table">A description of the imported table.</param>
 public ImportedTable(string moduleName, string fieldName, TableType table)
     : base(moduleName, fieldName)
 {
     this.Table = table;
 }