using System; using System.Collections.Generic; using System.Linq; using System.Text; using FireBirdUtil.DataTypes; using FireBirdUtil.SqlHelpers; namespace WeighBusiness.BO.CreateTables { public class CreateSelectedProductCatalogGoods : CreateBaseTable { public CreateSelectedProductCatalogGoods(string tableName) : base(tableName) { } public CreateSelectedProductCatalogGoods(string database ,string tableName) : base(database ,tableName) { } public override void AddFields(CreateTableHelper cth) { cth.AddField(new FieldInfo() { FieldName = "ProductCatalog_ID", FieldType = FBType.Integer, IsNotNull = true }); cth.AddField(new FieldInfo() { FieldName = "Goods_ID", FieldType = FBType.Integer, IsNotNull = true }); base.AddFields(cth); } } }