using System; using System.CodeDom.Compiler; using System.Collections; using System.ComponentModel; using System.ComponentModel.Design; using System.Data; using System.Diagnostics; using System.IO; using System.Runtime.Serialization; using System.Xml; using System.Xml.Schema; using System.Xml.Serialization; namespace SunRoxm.BizPeri.ReportDataSet.ReportDataSet { [Serializable] [XmlSchemaProvider("GetTypedDataSetSchema")] [HelpKeyword("vs.data.DataSet")] [XmlRoot("dsFrmSupplier")] [GeneratedCode("System.Data.Design.TypedDataSetGenerator", "2.0.0.0")] [DesignerCategory("code")] [ToolboxItem(true)] public class dsFrmSupplier : DataSet { public delegate void TelephoneRowChangeEventHandler(object sender, TelephoneRowChangeEvent e); public delegate void PrincipalRowChangeEventHandler(object sender, PrincipalRowChangeEvent e); public delegate void EmployeeRowChangeEventHandler(object sender, EmployeeRowChangeEvent e); public delegate void FaxRowChangeEventHandler(object sender, FaxRowChangeEvent e); public delegate void SupplierRowChangeEventHandler(object sender, SupplierRowChangeEvent e); public delegate void LinkmanRowChangeEventHandler(object sender, LinkmanRowChangeEvent e); public delegate void AppendInfoRowChangeEventHandler(object sender, AppendInfoRowChangeEvent e); [Serializable] [XmlSchemaProvider("GetTypedTableSchema")] [GeneratedCode("System.Data.Design.TypedDataSetGenerator", "2.0.0.0")] public class TelephoneDataTable : DataTable, IEnumerable { private DataColumn columnName_Telephone; private DataColumn columnNo_Telephone; private DataColumn columnFocus_Telephone; [DebuggerNonUserCode] public DataColumn Name_TelephoneColumn => columnName_Telephone; [DebuggerNonUserCode] public DataColumn No_TelephoneColumn => columnNo_Telephone; [DebuggerNonUserCode] public DataColumn Focus_TelephoneColumn => columnFocus_Telephone; [DebuggerNonUserCode] [Browsable(false)] public int Count => base.Rows.Count; [DebuggerNonUserCode] public TelephoneRow this[int index] => (TelephoneRow)base.Rows[index]; public event TelephoneRowChangeEventHandler TelephoneRowChanging; public event TelephoneRowChangeEventHandler TelephoneRowChanged; public event TelephoneRowChangeEventHandler TelephoneRowDeleting; public event TelephoneRowChangeEventHandler TelephoneRowDeleted; [DebuggerNonUserCode] public TelephoneDataTable() { base.TableName = "Telephone"; BeginInit(); InitClass(); EndInit(); } [DebuggerNonUserCode] internal TelephoneDataTable(DataTable table) { base.TableName = table.TableName; if (table.CaseSensitive != table.DataSet.CaseSensitive) { base.CaseSensitive = table.CaseSensitive; } if (table.Locale.ToString() != table.DataSet.Locale.ToString()) { base.Locale = table.Locale; } if (table.Namespace != table.DataSet.Namespace) { base.Namespace = table.Namespace; } base.Prefix = table.Prefix; base.MinimumCapacity = table.MinimumCapacity; } [DebuggerNonUserCode] protected TelephoneDataTable(SerializationInfo info, StreamingContext context) : base(info, context) { InitVars(); } [DebuggerNonUserCode] public void AddTelephoneRow(TelephoneRow row) { base.Rows.Add(row); } [DebuggerNonUserCode] public TelephoneRow AddTelephoneRow(string Name_Telephone, string No_Telephone, bool Focus_Telephone) { TelephoneRow telephoneRow = (TelephoneRow)NewRow(); telephoneRow.ItemArray = new object[3] { Name_Telephone, No_Telephone, Focus_Telephone }; base.Rows.Add(telephoneRow); return telephoneRow; } [DebuggerNonUserCode] public virtual IEnumerator GetEnumerator() { return base.Rows.GetEnumerator(); } [DebuggerNonUserCode] public override DataTable Clone() { TelephoneDataTable telephoneDataTable = (TelephoneDataTable)base.Clone(); telephoneDataTable.InitVars(); return telephoneDataTable; } [DebuggerNonUserCode] protected override DataTable CreateInstance() { return new TelephoneDataTable(); } [DebuggerNonUserCode] internal void InitVars() { columnName_Telephone = base.Columns["Name_Telephone"]; columnNo_Telephone = base.Columns["No_Telephone"]; columnFocus_Telephone = base.Columns["Focus_Telephone"]; } [DebuggerNonUserCode] private void InitClass() { columnName_Telephone = new DataColumn("Name_Telephone", typeof(string), null, MappingType.Element); base.Columns.Add(columnName_Telephone); columnNo_Telephone = new DataColumn("No_Telephone", typeof(string), null, MappingType.Element); base.Columns.Add(columnNo_Telephone); columnFocus_Telephone = new DataColumn("Focus_Telephone", typeof(bool), null, MappingType.Element); base.Columns.Add(columnFocus_Telephone); } [DebuggerNonUserCode] public TelephoneRow NewTelephoneRow() { return (TelephoneRow)NewRow(); } [DebuggerNonUserCode] protected override DataRow NewRowFromBuilder(DataRowBuilder builder) { return new TelephoneRow(builder); } [DebuggerNonUserCode] protected override Type GetRowType() { return typeof(TelephoneRow); } [DebuggerNonUserCode] protected override void OnRowChanged(DataRowChangeEventArgs e) { base.OnRowChanged(e); if (this.TelephoneRowChanged != null) { this.TelephoneRowChanged(this, new TelephoneRowChangeEvent((TelephoneRow)e.Row, e.Action)); } } [DebuggerNonUserCode] protected override void OnRowChanging(DataRowChangeEventArgs e) { base.OnRowChanging(e); if (this.TelephoneRowChanging != null) { this.TelephoneRowChanging(this, new TelephoneRowChangeEvent((TelephoneRow)e.Row, e.Action)); } } [DebuggerNonUserCode] protected override void OnRowDeleted(DataRowChangeEventArgs e) { base.OnRowDeleted(e); if (this.TelephoneRowDeleted != null) { this.TelephoneRowDeleted(this, new TelephoneRowChangeEvent((TelephoneRow)e.Row, e.Action)); } } [DebuggerNonUserCode] protected override void OnRowDeleting(DataRowChangeEventArgs e) { base.OnRowDeleting(e); if (this.TelephoneRowDeleting != null) { this.TelephoneRowDeleting(this, new TelephoneRowChangeEvent((TelephoneRow)e.Row, e.Action)); } } [DebuggerNonUserCode] public void RemoveTelephoneRow(TelephoneRow row) { base.Rows.Remove(row); } [DebuggerNonUserCode] public static XmlSchemaComplexType GetTypedTableSchema(XmlSchemaSet xs) { XmlSchemaComplexType xmlSchemaComplexType = new XmlSchemaComplexType(); XmlSchemaSequence xmlSchemaSequence = new XmlSchemaSequence(); dsFrmSupplier dsFrmSupplier = new dsFrmSupplier(); xs.Add(dsFrmSupplier.GetSchemaSerializable()); XmlSchemaAny xmlSchemaAny = new XmlSchemaAny(); xmlSchemaAny.Namespace = "http://www.w3.org/2001/XMLSchema"; xmlSchemaAny.MinOccurs = 0m; xmlSchemaAny.MaxOccurs = decimal.MaxValue; xmlSchemaAny.ProcessContents = XmlSchemaContentProcessing.Lax; xmlSchemaSequence.Items.Add(xmlSchemaAny); XmlSchemaAny xmlSchemaAny2 = new XmlSchemaAny(); xmlSchemaAny2.Namespace = "urn:schemas-microsoft-com:xml-diffgram-v1"; xmlSchemaAny2.MinOccurs = 1m; xmlSchemaAny2.ProcessContents = XmlSchemaContentProcessing.Lax; xmlSchemaSequence.Items.Add(xmlSchemaAny2); XmlSchemaAttribute xmlSchemaAttribute = new XmlSchemaAttribute(); xmlSchemaAttribute.Name = "namespace"; xmlSchemaAttribute.FixedValue = dsFrmSupplier.Namespace; xmlSchemaComplexType.Attributes.Add(xmlSchemaAttribute); XmlSchemaAttribute xmlSchemaAttribute2 = new XmlSchemaAttribute(); xmlSchemaAttribute2.Name = "tableTypeName"; xmlSchemaAttribute2.FixedValue = "TelephoneDataTable"; xmlSchemaComplexType.Attributes.Add(xmlSchemaAttribute2); xmlSchemaComplexType.Particle = xmlSchemaSequence; return xmlSchemaComplexType; } } [Serializable] [GeneratedCode("System.Data.Design.TypedDataSetGenerator", "2.0.0.0")] [XmlSchemaProvider("GetTypedTableSchema")] public class PrincipalDataTable : DataTable, IEnumerable { private DataColumn columnIsMain_Principal; private DataColumn columnComment_Principal; private DataColumn columnName_Employee; private DataColumn columnNo_Employee; [DebuggerNonUserCode] public DataColumn IsMain_PrincipalColumn => columnIsMain_Principal; [DebuggerNonUserCode] public DataColumn Comment_PrincipalColumn => columnComment_Principal; [DebuggerNonUserCode] public DataColumn Name_EmployeeColumn => columnName_Employee; [DebuggerNonUserCode] public DataColumn No_EmployeeColumn => columnNo_Employee; [Browsable(false)] [DebuggerNonUserCode] public int Count => base.Rows.Count; [DebuggerNonUserCode] public PrincipalRow this[int index] => (PrincipalRow)base.Rows[index]; public event PrincipalRowChangeEventHandler PrincipalRowChanging; public event PrincipalRowChangeEventHandler PrincipalRowChanged; public event PrincipalRowChangeEventHandler PrincipalRowDeleting; public event PrincipalRowChangeEventHandler PrincipalRowDeleted; [DebuggerNonUserCode] public PrincipalDataTable() { base.TableName = "Principal"; BeginInit(); InitClass(); EndInit(); } [DebuggerNonUserCode] internal PrincipalDataTable(DataTable table) { base.TableName = table.TableName; if (table.CaseSensitive != table.DataSet.CaseSensitive) { base.CaseSensitive = table.CaseSensitive; } if (table.Locale.ToString() != table.DataSet.Locale.ToString()) { base.Locale = table.Locale; } if (table.Namespace != table.DataSet.Namespace) { base.Namespace = table.Namespace; } base.Prefix = table.Prefix; base.MinimumCapacity = table.MinimumCapacity; } [DebuggerNonUserCode] protected PrincipalDataTable(SerializationInfo info, StreamingContext context) : base(info, context) { InitVars(); } [DebuggerNonUserCode] public void AddPrincipalRow(PrincipalRow row) { base.Rows.Add(row); } [DebuggerNonUserCode] public PrincipalRow AddPrincipalRow(bool IsMain_Principal, string Comment_Principal, string Name_Employee, string No_Employee) { PrincipalRow principalRow = (PrincipalRow)NewRow(); principalRow.ItemArray = new object[4] { IsMain_Principal, Comment_Principal, Name_Employee, No_Employee }; base.Rows.Add(principalRow); return principalRow; } [DebuggerNonUserCode] public virtual IEnumerator GetEnumerator() { return base.Rows.GetEnumerator(); } [DebuggerNonUserCode] public override DataTable Clone() { PrincipalDataTable principalDataTable = (PrincipalDataTable)base.Clone(); principalDataTable.InitVars(); return principalDataTable; } [DebuggerNonUserCode] protected override DataTable CreateInstance() { return new PrincipalDataTable(); } [DebuggerNonUserCode] internal void InitVars() { columnIsMain_Principal = base.Columns["IsMain_Principal"]; columnComment_Principal = base.Columns["Comment_Principal"]; columnName_Employee = base.Columns["Name_Employee"]; columnNo_Employee = base.Columns["No_Employee"]; } [DebuggerNonUserCode] private void InitClass() { columnIsMain_Principal = new DataColumn("IsMain_Principal", typeof(bool), null, MappingType.Element); base.Columns.Add(columnIsMain_Principal); columnComment_Principal = new DataColumn("Comment_Principal", typeof(string), null, MappingType.Element); base.Columns.Add(columnComment_Principal); columnName_Employee = new DataColumn("Name_Employee", typeof(string), null, MappingType.Element); base.Columns.Add(columnName_Employee); columnNo_Employee = new DataColumn("No_Employee", typeof(string), null, MappingType.Element); base.Columns.Add(columnNo_Employee); } [DebuggerNonUserCode] public PrincipalRow NewPrincipalRow() { return (PrincipalRow)NewRow(); } [DebuggerNonUserCode] protected override DataRow NewRowFromBuilder(DataRowBuilder builder) { return new PrincipalRow(builder); } [DebuggerNonUserCode] protected override Type GetRowType() { return typeof(PrincipalRow); } [DebuggerNonUserCode] protected override void OnRowChanged(DataRowChangeEventArgs e) { base.OnRowChanged(e); if (this.PrincipalRowChanged != null) { this.PrincipalRowChanged(this, new PrincipalRowChangeEvent((PrincipalRow)e.Row, e.Action)); } } [DebuggerNonUserCode] protected override void OnRowChanging(DataRowChangeEventArgs e) { base.OnRowChanging(e); if (this.PrincipalRowChanging != null) { this.PrincipalRowChanging(this, new PrincipalRowChangeEvent((PrincipalRow)e.Row, e.Action)); } } [DebuggerNonUserCode] protected override void OnRowDeleted(DataRowChangeEventArgs e) { base.OnRowDeleted(e); if (this.PrincipalRowDeleted != null) { this.PrincipalRowDeleted(this, new PrincipalRowChangeEvent((PrincipalRow)e.Row, e.Action)); } } [DebuggerNonUserCode] protected override void OnRowDeleting(DataRowChangeEventArgs e) { base.OnRowDeleting(e); if (this.PrincipalRowDeleting != null) { this.PrincipalRowDeleting(this, new PrincipalRowChangeEvent((PrincipalRow)e.Row, e.Action)); } } [DebuggerNonUserCode] public void RemovePrincipalRow(PrincipalRow row) { base.Rows.Remove(row); } [DebuggerNonUserCode] public static XmlSchemaComplexType GetTypedTableSchema(XmlSchemaSet xs) { XmlSchemaComplexType xmlSchemaComplexType = new XmlSchemaComplexType(); XmlSchemaSequence xmlSchemaSequence = new XmlSchemaSequence(); dsFrmSupplier dsFrmSupplier = new dsFrmSupplier(); xs.Add(dsFrmSupplier.GetSchemaSerializable()); XmlSchemaAny xmlSchemaAny = new XmlSchemaAny(); xmlSchemaAny.Namespace = "http://www.w3.org/2001/XMLSchema"; xmlSchemaAny.MinOccurs = 0m; xmlSchemaAny.MaxOccurs = decimal.MaxValue; xmlSchemaAny.ProcessContents = XmlSchemaContentProcessing.Lax; xmlSchemaSequence.Items.Add(xmlSchemaAny); XmlSchemaAny xmlSchemaAny2 = new XmlSchemaAny(); xmlSchemaAny2.Namespace = "urn:schemas-microsoft-com:xml-diffgram-v1"; xmlSchemaAny2.MinOccurs = 1m; xmlSchemaAny2.ProcessContents = XmlSchemaContentProcessing.Lax; xmlSchemaSequence.Items.Add(xmlSchemaAny2); XmlSchemaAttribute xmlSchemaAttribute = new XmlSchemaAttribute(); xmlSchemaAttribute.Name = "namespace"; xmlSchemaAttribute.FixedValue = dsFrmSupplier.Namespace; xmlSchemaComplexType.Attributes.Add(xmlSchemaAttribute); XmlSchemaAttribute xmlSchemaAttribute2 = new XmlSchemaAttribute(); xmlSchemaAttribute2.Name = "tableTypeName"; xmlSchemaAttribute2.FixedValue = "PrincipalDataTable"; xmlSchemaComplexType.Attributes.Add(xmlSchemaAttribute2); xmlSchemaComplexType.Particle = xmlSchemaSequence; return xmlSchemaComplexType; } } [Serializable] [XmlSchemaProvider("GetTypedTableSchema")] [GeneratedCode("System.Data.Design.TypedDataSetGenerator", "2.0.0.0")] public class EmployeeDataTable : DataTable, IEnumerable { private DataColumn columnNo_Employee; private DataColumn columnName_Employee; private DataColumn columnEmployeeNo_Employee; private DataColumn columnNameEng_Employee; private DataColumn columnGender_Employee; private DataColumn columnCountry_Employee; private DataColumn columnHomeplace_Employee; private DataColumn columnNation_Employee; private DataColumn columnIDNo_Employee; private DataColumn columnPassport_Employee; private DataColumn columnIsMarried_Employee; private DataColumn columnCreateDate_Employee; private DataColumn columnDuty_Employee; private DataColumn columnProbation_Employee; private DataColumn columnOnJobDate_Employee; private DataColumn columnOnDuty_Employee; private DataColumn columnObJobStatus_Employee; private DataColumn columnOffDuty_Employee; private DataColumn columnSuspendDate_Employee; private DataColumn columnTel_Employee; private DataColumn columnEMail_Employee; private DataColumn columnAddress_Employee; private DataColumn columnComment_Employee; private DataColumn columnLastModDate_Employee; [DebuggerNonUserCode] public DataColumn No_EmployeeColumn => columnNo_Employee; [DebuggerNonUserCode] public DataColumn Name_EmployeeColumn => columnName_Employee; [DebuggerNonUserCode] public DataColumn EmployeeNo_EmployeeColumn => columnEmployeeNo_Employee; [DebuggerNonUserCode] public DataColumn NameEng_EmployeeColumn => columnNameEng_Employee; [DebuggerNonUserCode] public DataColumn Gender_EmployeeColumn => columnGender_Employee; [DebuggerNonUserCode] public DataColumn Country_EmployeeColumn => columnCountry_Employee; [DebuggerNonUserCode] public DataColumn Homeplace_EmployeeColumn => columnHomeplace_Employee; [DebuggerNonUserCode] public DataColumn Nation_EmployeeColumn => columnNation_Employee; [DebuggerNonUserCode] public DataColumn IDNo_EmployeeColumn => columnIDNo_Employee; [DebuggerNonUserCode] public DataColumn Passport_EmployeeColumn => columnPassport_Employee; [DebuggerNonUserCode] public DataColumn IsMarried_EmployeeColumn => columnIsMarried_Employee; [DebuggerNonUserCode] public DataColumn CreateDate_EmployeeColumn => columnCreateDate_Employee; [DebuggerNonUserCode] public DataColumn Duty_EmployeeColumn => columnDuty_Employee; [DebuggerNonUserCode] public DataColumn Probation_EmployeeColumn => columnProbation_Employee; [DebuggerNonUserCode] public DataColumn OnJobDate_EmployeeColumn => columnOnJobDate_Employee; [DebuggerNonUserCode] public DataColumn OnDuty_EmployeeColumn => columnOnDuty_Employee; [DebuggerNonUserCode] public DataColumn ObJobStatus_EmployeeColumn => columnObJobStatus_Employee; [DebuggerNonUserCode] public DataColumn OffDuty_EmployeeColumn => columnOffDuty_Employee; [DebuggerNonUserCode] public DataColumn SuspendDate_EmployeeColumn => columnSuspendDate_Employee; [DebuggerNonUserCode] public DataColumn Tel_EmployeeColumn => columnTel_Employee; [DebuggerNonUserCode] public DataColumn EMail_EmployeeColumn => columnEMail_Employee; [DebuggerNonUserCode] public DataColumn Address_EmployeeColumn => columnAddress_Employee; [DebuggerNonUserCode] public DataColumn Comment_EmployeeColumn => columnComment_Employee; [DebuggerNonUserCode] public DataColumn LastModDate_EmployeeColumn => columnLastModDate_Employee; [Browsable(false)] [DebuggerNonUserCode] public int Count => base.Rows.Count; [DebuggerNonUserCode] public EmployeeRow this[int index] => (EmployeeRow)base.Rows[index]; public event EmployeeRowChangeEventHandler EmployeeRowChanging; public event EmployeeRowChangeEventHandler EmployeeRowChanged; public event EmployeeRowChangeEventHandler EmployeeRowDeleting; public event EmployeeRowChangeEventHandler EmployeeRowDeleted; [DebuggerNonUserCode] public EmployeeDataTable() { base.TableName = "Employee"; BeginInit(); InitClass(); EndInit(); } [DebuggerNonUserCode] internal EmployeeDataTable(DataTable table) { base.TableName = table.TableName; if (table.CaseSensitive != table.DataSet.CaseSensitive) { base.CaseSensitive = table.CaseSensitive; } if (table.Locale.ToString() != table.DataSet.Locale.ToString()) { base.Locale = table.Locale; } if (table.Namespace != table.DataSet.Namespace) { base.Namespace = table.Namespace; } base.Prefix = table.Prefix; base.MinimumCapacity = table.MinimumCapacity; } [DebuggerNonUserCode] protected EmployeeDataTable(SerializationInfo info, StreamingContext context) : base(info, context) { InitVars(); } [DebuggerNonUserCode] public void AddEmployeeRow(EmployeeRow row) { base.Rows.Add(row); } [DebuggerNonUserCode] public EmployeeRow AddEmployeeRow(string No_Employee, string Name_Employee, string EmployeeNo_Employee, string NameEng_Employee, bool Gender_Employee, int Country_Employee, string Homeplace_Employee, string Nation_Employee, string IDNo_Employee, string Passport_Employee, bool IsMarried_Employee, DateTime CreateDate_Employee, string Duty_Employee, decimal Probation_Employee, DateTime OnJobDate_Employee, DateTime OnDuty_Employee, int ObJobStatus_Employee, DateTime OffDuty_Employee, DateTime SuspendDate_Employee, string Tel_Employee, string EMail_Employee, string Address_Employee, string Comment_Employee, DateTime LastModDate_Employee) { EmployeeRow employeeRow = (EmployeeRow)NewRow(); employeeRow.ItemArray = new object[24] { No_Employee, Name_Employee, EmployeeNo_Employee, NameEng_Employee, Gender_Employee, Country_Employee, Homeplace_Employee, Nation_Employee, IDNo_Employee, Passport_Employee, IsMarried_Employee, CreateDate_Employee, Duty_Employee, Probation_Employee, OnJobDate_Employee, OnDuty_Employee, ObJobStatus_Employee, OffDuty_Employee, SuspendDate_Employee, Tel_Employee, EMail_Employee, Address_Employee, Comment_Employee, LastModDate_Employee }; base.Rows.Add(employeeRow); return employeeRow; } [DebuggerNonUserCode] public virtual IEnumerator GetEnumerator() { return base.Rows.GetEnumerator(); } [DebuggerNonUserCode] public override DataTable Clone() { EmployeeDataTable employeeDataTable = (EmployeeDataTable)base.Clone(); employeeDataTable.InitVars(); return employeeDataTable; } [DebuggerNonUserCode] protected override DataTable CreateInstance() { return new EmployeeDataTable(); } [DebuggerNonUserCode] internal void InitVars() { columnNo_Employee = base.Columns["No_Employee"]; columnName_Employee = base.Columns["Name_Employee"]; columnEmployeeNo_Employee = base.Columns["EmployeeNo_Employee"]; columnNameEng_Employee = base.Columns["NameEng_Employee"]; columnGender_Employee = base.Columns["Gender_Employee"]; columnCountry_Employee = base.Columns["Country_Employee"]; columnHomeplace_Employee = base.Columns["Homeplace_Employee"]; columnNation_Employee = base.Columns["Nation_Employee"]; columnIDNo_Employee = base.Columns["IDNo_Employee"]; columnPassport_Employee = base.Columns["Passport_Employee"]; columnIsMarried_Employee = base.Columns["IsMarried_Employee"]; columnCreateDate_Employee = base.Columns["CreateDate_Employee"]; columnDuty_Employee = base.Columns["Duty_Employee"]; columnProbation_Employee = base.Columns["Probation_Employee"]; columnOnJobDate_Employee = base.Columns["OnJobDate_Employee"]; columnOnDuty_Employee = base.Columns["OnDuty_Employee"]; columnObJobStatus_Employee = base.Columns["ObJobStatus_Employee"]; columnOffDuty_Employee = base.Columns["OffDuty_Employee"]; columnSuspendDate_Employee = base.Columns["SuspendDate_Employee"]; columnTel_Employee = base.Columns["Tel_Employee"]; columnEMail_Employee = base.Columns["EMail_Employee"]; columnAddress_Employee = base.Columns["Address_Employee"]; columnComment_Employee = base.Columns["Comment_Employee"]; columnLastModDate_Employee = base.Columns["LastModDate_Employee"]; } [DebuggerNonUserCode] private void InitClass() { columnNo_Employee = new DataColumn("No_Employee", typeof(string), null, MappingType.Element); base.Columns.Add(columnNo_Employee); columnName_Employee = new DataColumn("Name_Employee", typeof(string), null, MappingType.Element); base.Columns.Add(columnName_Employee); columnEmployeeNo_Employee = new DataColumn("EmployeeNo_Employee", typeof(string), null, MappingType.Element); base.Columns.Add(columnEmployeeNo_Employee); columnNameEng_Employee = new DataColumn("NameEng_Employee", typeof(string), null, MappingType.Element); base.Columns.Add(columnNameEng_Employee); columnGender_Employee = new DataColumn("Gender_Employee", typeof(bool), null, MappingType.Element); base.Columns.Add(columnGender_Employee); columnCountry_Employee = new DataColumn("Country_Employee", typeof(int), null, MappingType.Element); base.Columns.Add(columnCountry_Employee); columnHomeplace_Employee = new DataColumn("Homeplace_Employee", typeof(string), null, MappingType.Element); base.Columns.Add(columnHomeplace_Employee); columnNation_Employee = new DataColumn("Nation_Employee", typeof(string), null, MappingType.Element); base.Columns.Add(columnNation_Employee); columnIDNo_Employee = new DataColumn("IDNo_Employee", typeof(string), null, MappingType.Element); base.Columns.Add(columnIDNo_Employee); columnPassport_Employee = new DataColumn("Passport_Employee", typeof(string), null, MappingType.Element); base.Columns.Add(columnPassport_Employee); columnIsMarried_Employee = new DataColumn("IsMarried_Employee", typeof(bool), null, MappingType.Element); base.Columns.Add(columnIsMarried_Employee); columnCreateDate_Employee = new DataColumn("CreateDate_Employee", typeof(DateTime), null, MappingType.Element); base.Columns.Add(columnCreateDate_Employee); columnDuty_Employee = new DataColumn("Duty_Employee", typeof(string), null, MappingType.Element); base.Columns.Add(columnDuty_Employee); columnProbation_Employee = new DataColumn("Probation_Employee", typeof(decimal), null, MappingType.Element); base.Columns.Add(columnProbation_Employee); columnOnJobDate_Employee = new DataColumn("OnJobDate_Employee", typeof(DateTime), null, MappingType.Element); base.Columns.Add(columnOnJobDate_Employee); columnOnDuty_Employee = new DataColumn("OnDuty_Employee", typeof(DateTime), null, MappingType.Element); base.Columns.Add(columnOnDuty_Employee); columnObJobStatus_Employee = new DataColumn("ObJobStatus_Employee", typeof(int), null, MappingType.Element); base.Columns.Add(columnObJobStatus_Employee); columnOffDuty_Employee = new DataColumn("OffDuty_Employee", typeof(DateTime), null, MappingType.Element); base.Columns.Add(columnOffDuty_Employee); columnSuspendDate_Employee = new DataColumn("SuspendDate_Employee", typeof(DateTime), null, MappingType.Element); base.Columns.Add(columnSuspendDate_Employee); columnTel_Employee = new DataColumn("Tel_Employee", typeof(string), null, MappingType.Element); base.Columns.Add(columnTel_Employee); columnEMail_Employee = new DataColumn("EMail_Employee", typeof(string), null, MappingType.Element); base.Columns.Add(columnEMail_Employee); columnAddress_Employee = new DataColumn("Address_Employee", typeof(string), null, MappingType.Element); base.Columns.Add(columnAddress_Employee); columnComment_Employee = new DataColumn("Comment_Employee", typeof(string), null, MappingType.Element); base.Columns.Add(columnComment_Employee); columnLastModDate_Employee = new DataColumn("LastModDate_Employee", typeof(DateTime), null, MappingType.Element); base.Columns.Add(columnLastModDate_Employee); } [DebuggerNonUserCode] public EmployeeRow NewEmployeeRow() { return (EmployeeRow)NewRow(); } [DebuggerNonUserCode] protected override DataRow NewRowFromBuilder(DataRowBuilder builder) { return new EmployeeRow(builder); } [DebuggerNonUserCode] protected override Type GetRowType() { return typeof(EmployeeRow); } [DebuggerNonUserCode] protected override void OnRowChanged(DataRowChangeEventArgs e) { base.OnRowChanged(e); if (this.EmployeeRowChanged != null) { this.EmployeeRowChanged(this, new EmployeeRowChangeEvent((EmployeeRow)e.Row, e.Action)); } } [DebuggerNonUserCode] protected override void OnRowChanging(DataRowChangeEventArgs e) { base.OnRowChanging(e); if (this.EmployeeRowChanging != null) { this.EmployeeRowChanging(this, new EmployeeRowChangeEvent((EmployeeRow)e.Row, e.Action)); } } [DebuggerNonUserCode] protected override void OnRowDeleted(DataRowChangeEventArgs e) { base.OnRowDeleted(e); if (this.EmployeeRowDeleted != null) { this.EmployeeRowDeleted(this, new EmployeeRowChangeEvent((EmployeeRow)e.Row, e.Action)); } } [DebuggerNonUserCode] protected override void OnRowDeleting(DataRowChangeEventArgs e) { base.OnRowDeleting(e); if (this.EmployeeRowDeleting != null) { this.EmployeeRowDeleting(this, new EmployeeRowChangeEvent((EmployeeRow)e.Row, e.Action)); } } [DebuggerNonUserCode] public void RemoveEmployeeRow(EmployeeRow row) { base.Rows.Remove(row); } [DebuggerNonUserCode] public static XmlSchemaComplexType GetTypedTableSchema(XmlSchemaSet xs) { XmlSchemaComplexType xmlSchemaComplexType = new XmlSchemaComplexType(); XmlSchemaSequence xmlSchemaSequence = new XmlSchemaSequence(); dsFrmSupplier dsFrmSupplier = new dsFrmSupplier(); xs.Add(dsFrmSupplier.GetSchemaSerializable()); XmlSchemaAny xmlSchemaAny = new XmlSchemaAny(); xmlSchemaAny.Namespace = "http://www.w3.org/2001/XMLSchema"; xmlSchemaAny.MinOccurs = 0m; xmlSchemaAny.MaxOccurs = decimal.MaxValue; xmlSchemaAny.ProcessContents = XmlSchemaContentProcessing.Lax; xmlSchemaSequence.Items.Add(xmlSchemaAny); XmlSchemaAny xmlSchemaAny2 = new XmlSchemaAny(); xmlSchemaAny2.Namespace = "urn:schemas-microsoft-com:xml-diffgram-v1"; xmlSchemaAny2.MinOccurs = 1m; xmlSchemaAny2.ProcessContents = XmlSchemaContentProcessing.Lax; xmlSchemaSequence.Items.Add(xmlSchemaAny2); XmlSchemaAttribute xmlSchemaAttribute = new XmlSchemaAttribute(); xmlSchemaAttribute.Name = "namespace"; xmlSchemaAttribute.FixedValue = dsFrmSupplier.Namespace; xmlSchemaComplexType.Attributes.Add(xmlSchemaAttribute); XmlSchemaAttribute xmlSchemaAttribute2 = new XmlSchemaAttribute(); xmlSchemaAttribute2.Name = "tableTypeName"; xmlSchemaAttribute2.FixedValue = "EmployeeDataTable"; xmlSchemaComplexType.Attributes.Add(xmlSchemaAttribute2); xmlSchemaComplexType.Particle = xmlSchemaSequence; return xmlSchemaComplexType; } } [Serializable] [GeneratedCode("System.Data.Design.TypedDataSetGenerator", "2.0.0.0")] [XmlSchemaProvider("GetTypedTableSchema")] public class FaxDataTable : DataTable, IEnumerable { private DataColumn columnName_Fax; private DataColumn columnNo_Fax; private DataColumn columnFocus_Fax; [DebuggerNonUserCode] public DataColumn Name_FaxColumn => columnName_Fax; [DebuggerNonUserCode] public DataColumn No_FaxColumn => columnNo_Fax; [DebuggerNonUserCode] public DataColumn Focus_FaxColumn => columnFocus_Fax; [Browsable(false)] [DebuggerNonUserCode] public int Count => base.Rows.Count; [DebuggerNonUserCode] public FaxRow this[int index] => (FaxRow)base.Rows[index]; public event FaxRowChangeEventHandler FaxRowChanging; public event FaxRowChangeEventHandler FaxRowChanged; public event FaxRowChangeEventHandler FaxRowDeleting; public event FaxRowChangeEventHandler FaxRowDeleted; [DebuggerNonUserCode] public FaxDataTable() { base.TableName = "Fax"; BeginInit(); InitClass(); EndInit(); } [DebuggerNonUserCode] internal FaxDataTable(DataTable table) { base.TableName = table.TableName; if (table.CaseSensitive != table.DataSet.CaseSensitive) { base.CaseSensitive = table.CaseSensitive; } if (table.Locale.ToString() != table.DataSet.Locale.ToString()) { base.Locale = table.Locale; } if (table.Namespace != table.DataSet.Namespace) { base.Namespace = table.Namespace; } base.Prefix = table.Prefix; base.MinimumCapacity = table.MinimumCapacity; } [DebuggerNonUserCode] protected FaxDataTable(SerializationInfo info, StreamingContext context) : base(info, context) { InitVars(); } [DebuggerNonUserCode] public void AddFaxRow(FaxRow row) { base.Rows.Add(row); } [DebuggerNonUserCode] public FaxRow AddFaxRow(string Name_Fax, string No_Fax, bool Focus_Fax) { FaxRow faxRow = (FaxRow)NewRow(); faxRow.ItemArray = new object[3] { Name_Fax, No_Fax, Focus_Fax }; base.Rows.Add(faxRow); return faxRow; } [DebuggerNonUserCode] public virtual IEnumerator GetEnumerator() { return base.Rows.GetEnumerator(); } [DebuggerNonUserCode] public override DataTable Clone() { FaxDataTable faxDataTable = (FaxDataTable)base.Clone(); faxDataTable.InitVars(); return faxDataTable; } [DebuggerNonUserCode] protected override DataTable CreateInstance() { return new FaxDataTable(); } [DebuggerNonUserCode] internal void InitVars() { columnName_Fax = base.Columns["Name_Fax"]; columnNo_Fax = base.Columns["No_Fax"]; columnFocus_Fax = base.Columns["Focus_Fax"]; } [DebuggerNonUserCode] private void InitClass() { columnName_Fax = new DataColumn("Name_Fax", typeof(string), null, MappingType.Element); base.Columns.Add(columnName_Fax); columnNo_Fax = new DataColumn("No_Fax", typeof(string), null, MappingType.Element); base.Columns.Add(columnNo_Fax); columnFocus_Fax = new DataColumn("Focus_Fax", typeof(bool), null, MappingType.Element); base.Columns.Add(columnFocus_Fax); } [DebuggerNonUserCode] public FaxRow NewFaxRow() { return (FaxRow)NewRow(); } [DebuggerNonUserCode] protected override DataRow NewRowFromBuilder(DataRowBuilder builder) { return new FaxRow(builder); } [DebuggerNonUserCode] protected override Type GetRowType() { return typeof(FaxRow); } [DebuggerNonUserCode] protected override void OnRowChanged(DataRowChangeEventArgs e) { base.OnRowChanged(e); if (this.FaxRowChanged != null) { this.FaxRowChanged(this, new FaxRowChangeEvent((FaxRow)e.Row, e.Action)); } } [DebuggerNonUserCode] protected override void OnRowChanging(DataRowChangeEventArgs e) { base.OnRowChanging(e); if (this.FaxRowChanging != null) { this.FaxRowChanging(this, new FaxRowChangeEvent((FaxRow)e.Row, e.Action)); } } [DebuggerNonUserCode] protected override void OnRowDeleted(DataRowChangeEventArgs e) { base.OnRowDeleted(e); if (this.FaxRowDeleted != null) { this.FaxRowDeleted(this, new FaxRowChangeEvent((FaxRow)e.Row, e.Action)); } } [DebuggerNonUserCode] protected override void OnRowDeleting(DataRowChangeEventArgs e) { base.OnRowDeleting(e); if (this.FaxRowDeleting != null) { this.FaxRowDeleting(this, new FaxRowChangeEvent((FaxRow)e.Row, e.Action)); } } [DebuggerNonUserCode] public void RemoveFaxRow(FaxRow row) { base.Rows.Remove(row); } [DebuggerNonUserCode] public static XmlSchemaComplexType GetTypedTableSchema(XmlSchemaSet xs) { XmlSchemaComplexType xmlSchemaComplexType = new XmlSchemaComplexType(); XmlSchemaSequence xmlSchemaSequence = new XmlSchemaSequence(); dsFrmSupplier dsFrmSupplier = new dsFrmSupplier(); xs.Add(dsFrmSupplier.GetSchemaSerializable()); XmlSchemaAny xmlSchemaAny = new XmlSchemaAny(); xmlSchemaAny.Namespace = "http://www.w3.org/2001/XMLSchema"; xmlSchemaAny.MinOccurs = 0m; xmlSchemaAny.MaxOccurs = decimal.MaxValue; xmlSchemaAny.ProcessContents = XmlSchemaContentProcessing.Lax; xmlSchemaSequence.Items.Add(xmlSchemaAny); XmlSchemaAny xmlSchemaAny2 = new XmlSchemaAny(); xmlSchemaAny2.Namespace = "urn:schemas-microsoft-com:xml-diffgram-v1"; xmlSchemaAny2.MinOccurs = 1m; xmlSchemaAny2.ProcessContents = XmlSchemaContentProcessing.Lax; xmlSchemaSequence.Items.Add(xmlSchemaAny2); XmlSchemaAttribute xmlSchemaAttribute = new XmlSchemaAttribute(); xmlSchemaAttribute.Name = "namespace"; xmlSchemaAttribute.FixedValue = dsFrmSupplier.Namespace; xmlSchemaComplexType.Attributes.Add(xmlSchemaAttribute); XmlSchemaAttribute xmlSchemaAttribute2 = new XmlSchemaAttribute(); xmlSchemaAttribute2.Name = "tableTypeName"; xmlSchemaAttribute2.FixedValue = "FaxDataTable"; xmlSchemaComplexType.Attributes.Add(xmlSchemaAttribute2); xmlSchemaComplexType.Particle = xmlSchemaSequence; return xmlSchemaComplexType; } } [Serializable] [GeneratedCode("System.Data.Design.TypedDataSetGenerator", "2.0.0.0")] [XmlSchemaProvider("GetTypedTableSchema")] public class SupplierDataTable : DataTable, IEnumerable { private DataColumn columnNo_Supplier; private DataColumn columnShortName_Supplier; private DataColumn columnName_Supplier; private DataColumn columnRegistedAddress_Supplier; private DataColumn columnCountry_Supplier; private DataColumn columnPostalCode_Supplier; private DataColumn columnCreateDate_Supplier; private DataColumn columnComment_Supplier; private DataColumn columnSuspendDate_Supplier; private DataColumn columnLastModDate_Supplier; private DataColumn columnCreatorName_Supplier; private DataColumn columnLastModUser_SupplierName; private DataColumn columnCountryName; [DebuggerNonUserCode] public DataColumn No_SupplierColumn => columnNo_Supplier; [DebuggerNonUserCode] public DataColumn ShortName_SupplierColumn => columnShortName_Supplier; [DebuggerNonUserCode] public DataColumn Name_SupplierColumn => columnName_Supplier; [DebuggerNonUserCode] public DataColumn RegistedAddress_SupplierColumn => columnRegistedAddress_Supplier; [DebuggerNonUserCode] public DataColumn Country_SupplierColumn => columnCountry_Supplier; [DebuggerNonUserCode] public DataColumn PostalCode_SupplierColumn => columnPostalCode_Supplier; [DebuggerNonUserCode] public DataColumn CreateDate_SupplierColumn => columnCreateDate_Supplier; [DebuggerNonUserCode] public DataColumn Comment_SupplierColumn => columnComment_Supplier; [DebuggerNonUserCode] public DataColumn SuspendDate_SupplierColumn => columnSuspendDate_Supplier; [DebuggerNonUserCode] public DataColumn LastModDate_SupplierColumn => columnLastModDate_Supplier; [DebuggerNonUserCode] public DataColumn CreatorName_SupplierColumn => columnCreatorName_Supplier; [DebuggerNonUserCode] public DataColumn LastModUser_SupplierNameColumn => columnLastModUser_SupplierName; [DebuggerNonUserCode] public DataColumn CountryNameColumn => columnCountryName; [Browsable(false)] [DebuggerNonUserCode] public int Count => base.Rows.Count; [DebuggerNonUserCode] public SupplierRow this[int index] => (SupplierRow)base.Rows[index]; public event SupplierRowChangeEventHandler SupplierRowChanging; public event SupplierRowChangeEventHandler SupplierRowChanged; public event SupplierRowChangeEventHandler SupplierRowDeleting; public event SupplierRowChangeEventHandler SupplierRowDeleted; [DebuggerNonUserCode] public SupplierDataTable() { base.TableName = "Supplier"; BeginInit(); InitClass(); EndInit(); } [DebuggerNonUserCode] internal SupplierDataTable(DataTable table) { base.TableName = table.TableName; if (table.CaseSensitive != table.DataSet.CaseSensitive) { base.CaseSensitive = table.CaseSensitive; } if (table.Locale.ToString() != table.DataSet.Locale.ToString()) { base.Locale = table.Locale; } if (table.Namespace != table.DataSet.Namespace) { base.Namespace = table.Namespace; } base.Prefix = table.Prefix; base.MinimumCapacity = table.MinimumCapacity; } [DebuggerNonUserCode] protected SupplierDataTable(SerializationInfo info, StreamingContext context) : base(info, context) { InitVars(); } [DebuggerNonUserCode] public void AddSupplierRow(SupplierRow row) { base.Rows.Add(row); } [DebuggerNonUserCode] public SupplierRow AddSupplierRow(string No_Supplier, string ShortName_Supplier, string Name_Supplier, string RegistedAddress_Supplier, int Country_Supplier, string PostalCode_Supplier, DateTime CreateDate_Supplier, string Comment_Supplier, DateTime SuspendDate_Supplier, DateTime LastModDate_Supplier, string CreatorName_Supplier, string LastModUser_SupplierName, string CountryName) { SupplierRow supplierRow = (SupplierRow)NewRow(); supplierRow.ItemArray = new object[13] { No_Supplier, ShortName_Supplier, Name_Supplier, RegistedAddress_Supplier, Country_Supplier, PostalCode_Supplier, CreateDate_Supplier, Comment_Supplier, SuspendDate_Supplier, LastModDate_Supplier, CreatorName_Supplier, LastModUser_SupplierName, CountryName }; base.Rows.Add(supplierRow); return supplierRow; } [DebuggerNonUserCode] public virtual IEnumerator GetEnumerator() { return base.Rows.GetEnumerator(); } [DebuggerNonUserCode] public override DataTable Clone() { SupplierDataTable supplierDataTable = (SupplierDataTable)base.Clone(); supplierDataTable.InitVars(); return supplierDataTable; } [DebuggerNonUserCode] protected override DataTable CreateInstance() { return new SupplierDataTable(); } [DebuggerNonUserCode] internal void InitVars() { columnNo_Supplier = base.Columns["No_Supplier"]; columnShortName_Supplier = base.Columns["ShortName_Supplier"]; columnName_Supplier = base.Columns["Name_Supplier"]; columnRegistedAddress_Supplier = base.Columns["RegistedAddress_Supplier"]; columnCountry_Supplier = base.Columns["Country_Supplier"]; columnPostalCode_Supplier = base.Columns["PostalCode_Supplier"]; columnCreateDate_Supplier = base.Columns["CreateDate_Supplier"]; columnComment_Supplier = base.Columns["Comment_Supplier"]; columnSuspendDate_Supplier = base.Columns["SuspendDate_Supplier"]; columnLastModDate_Supplier = base.Columns["LastModDate_Supplier"]; columnCreatorName_Supplier = base.Columns["CreatorName_Supplier"]; columnLastModUser_SupplierName = base.Columns["LastModUser_SupplierName"]; columnCountryName = base.Columns["CountryName"]; } [DebuggerNonUserCode] private void InitClass() { columnNo_Supplier = new DataColumn("No_Supplier", typeof(string), null, MappingType.Element); base.Columns.Add(columnNo_Supplier); columnShortName_Supplier = new DataColumn("ShortName_Supplier", typeof(string), null, MappingType.Element); base.Columns.Add(columnShortName_Supplier); columnName_Supplier = new DataColumn("Name_Supplier", typeof(string), null, MappingType.Element); base.Columns.Add(columnName_Supplier); columnRegistedAddress_Supplier = new DataColumn("RegistedAddress_Supplier", typeof(string), null, MappingType.Element); base.Columns.Add(columnRegistedAddress_Supplier); columnCountry_Supplier = new DataColumn("Country_Supplier", typeof(int), null, MappingType.Element); base.Columns.Add(columnCountry_Supplier); columnPostalCode_Supplier = new DataColumn("PostalCode_Supplier", typeof(string), null, MappingType.Element); base.Columns.Add(columnPostalCode_Supplier); columnCreateDate_Supplier = new DataColumn("CreateDate_Supplier", typeof(DateTime), null, MappingType.Element); base.Columns.Add(columnCreateDate_Supplier); columnComment_Supplier = new DataColumn("Comment_Supplier", typeof(string), null, MappingType.Element); base.Columns.Add(columnComment_Supplier); columnSuspendDate_Supplier = new DataColumn("SuspendDate_Supplier", typeof(DateTime), null, MappingType.Element); base.Columns.Add(columnSuspendDate_Supplier); columnLastModDate_Supplier = new DataColumn("LastModDate_Supplier", typeof(DateTime), null, MappingType.Element); base.Columns.Add(columnLastModDate_Supplier); columnCreatorName_Supplier = new DataColumn("CreatorName_Supplier", typeof(string), null, MappingType.Element); base.Columns.Add(columnCreatorName_Supplier); columnLastModUser_SupplierName = new DataColumn("LastModUser_SupplierName", typeof(string), null, MappingType.Element); base.Columns.Add(columnLastModUser_SupplierName); columnCountryName = new DataColumn("CountryName", typeof(string), null, MappingType.Element); base.Columns.Add(columnCountryName); } [DebuggerNonUserCode] public SupplierRow NewSupplierRow() { return (SupplierRow)NewRow(); } [DebuggerNonUserCode] protected override DataRow NewRowFromBuilder(DataRowBuilder builder) { return new SupplierRow(builder); } [DebuggerNonUserCode] protected override Type GetRowType() { return typeof(SupplierRow); } [DebuggerNonUserCode] protected override void OnRowChanged(DataRowChangeEventArgs e) { base.OnRowChanged(e); if (this.SupplierRowChanged != null) { this.SupplierRowChanged(this, new SupplierRowChangeEvent((SupplierRow)e.Row, e.Action)); } } [DebuggerNonUserCode] protected override void OnRowChanging(DataRowChangeEventArgs e) { base.OnRowChanging(e); if (this.SupplierRowChanging != null) { this.SupplierRowChanging(this, new SupplierRowChangeEvent((SupplierRow)e.Row, e.Action)); } } [DebuggerNonUserCode] protected override void OnRowDeleted(DataRowChangeEventArgs e) { base.OnRowDeleted(e); if (this.SupplierRowDeleted != null) { this.SupplierRowDeleted(this, new SupplierRowChangeEvent((SupplierRow)e.Row, e.Action)); } } [DebuggerNonUserCode] protected override void OnRowDeleting(DataRowChangeEventArgs e) { base.OnRowDeleting(e); if (this.SupplierRowDeleting != null) { this.SupplierRowDeleting(this, new SupplierRowChangeEvent((SupplierRow)e.Row, e.Action)); } } [DebuggerNonUserCode] public void RemoveSupplierRow(SupplierRow row) { base.Rows.Remove(row); } [DebuggerNonUserCode] public static XmlSchemaComplexType GetTypedTableSchema(XmlSchemaSet xs) { XmlSchemaComplexType xmlSchemaComplexType = new XmlSchemaComplexType(); XmlSchemaSequence xmlSchemaSequence = new XmlSchemaSequence(); dsFrmSupplier dsFrmSupplier = new dsFrmSupplier(); xs.Add(dsFrmSupplier.GetSchemaSerializable()); XmlSchemaAny xmlSchemaAny = new XmlSchemaAny(); xmlSchemaAny.Namespace = "http://www.w3.org/2001/XMLSchema"; xmlSchemaAny.MinOccurs = 0m; xmlSchemaAny.MaxOccurs = decimal.MaxValue; xmlSchemaAny.ProcessContents = XmlSchemaContentProcessing.Lax; xmlSchemaSequence.Items.Add(xmlSchemaAny); XmlSchemaAny xmlSchemaAny2 = new XmlSchemaAny(); xmlSchemaAny2.Namespace = "urn:schemas-microsoft-com:xml-diffgram-v1"; xmlSchemaAny2.MinOccurs = 1m; xmlSchemaAny2.ProcessContents = XmlSchemaContentProcessing.Lax; xmlSchemaSequence.Items.Add(xmlSchemaAny2); XmlSchemaAttribute xmlSchemaAttribute = new XmlSchemaAttribute(); xmlSchemaAttribute.Name = "namespace"; xmlSchemaAttribute.FixedValue = dsFrmSupplier.Namespace; xmlSchemaComplexType.Attributes.Add(xmlSchemaAttribute); XmlSchemaAttribute xmlSchemaAttribute2 = new XmlSchemaAttribute(); xmlSchemaAttribute2.Name = "tableTypeName"; xmlSchemaAttribute2.FixedValue = "SupplierDataTable"; xmlSchemaComplexType.Attributes.Add(xmlSchemaAttribute2); xmlSchemaComplexType.Particle = xmlSchemaSequence; return xmlSchemaComplexType; } } [Serializable] [GeneratedCode("System.Data.Design.TypedDataSetGenerator", "2.0.0.0")] [XmlSchemaProvider("GetTypedTableSchema")] public class LinkmanDataTable : DataTable, IEnumerable { private DataColumn columnName_Linkman; private DataColumn columnDepartment_Linkman; private DataColumn columnDuty_Linkman; private DataColumn columnTel_Linkman; private DataColumn columnFax_Linkman; private DataColumn columnMobile_Linkman; private DataColumn columnEmail_Linkman; private DataColumn columnIsMain_Linkman; private DataColumn columnComment_Linkman; [DebuggerNonUserCode] public DataColumn Name_LinkmanColumn => columnName_Linkman; [DebuggerNonUserCode] public DataColumn Department_LinkmanColumn => columnDepartment_Linkman; [DebuggerNonUserCode] public DataColumn Duty_LinkmanColumn => columnDuty_Linkman; [DebuggerNonUserCode] public DataColumn Tel_LinkmanColumn => columnTel_Linkman; [DebuggerNonUserCode] public DataColumn Fax_LinkmanColumn => columnFax_Linkman; [DebuggerNonUserCode] public DataColumn Mobile_LinkmanColumn => columnMobile_Linkman; [DebuggerNonUserCode] public DataColumn Email_LinkmanColumn => columnEmail_Linkman; [DebuggerNonUserCode] public DataColumn IsMain_LinkmanColumn => columnIsMain_Linkman; [DebuggerNonUserCode] public DataColumn Comment_LinkmanColumn => columnComment_Linkman; [Browsable(false)] [DebuggerNonUserCode] public int Count => base.Rows.Count; [DebuggerNonUserCode] public LinkmanRow this[int index] => (LinkmanRow)base.Rows[index]; public event LinkmanRowChangeEventHandler LinkmanRowChanging; public event LinkmanRowChangeEventHandler LinkmanRowChanged; public event LinkmanRowChangeEventHandler LinkmanRowDeleting; public event LinkmanRowChangeEventHandler LinkmanRowDeleted; [DebuggerNonUserCode] public LinkmanDataTable() { base.TableName = "Linkman"; BeginInit(); InitClass(); EndInit(); } [DebuggerNonUserCode] internal LinkmanDataTable(DataTable table) { base.TableName = table.TableName; if (table.CaseSensitive != table.DataSet.CaseSensitive) { base.CaseSensitive = table.CaseSensitive; } if (table.Locale.ToString() != table.DataSet.Locale.ToString()) { base.Locale = table.Locale; } if (table.Namespace != table.DataSet.Namespace) { base.Namespace = table.Namespace; } base.Prefix = table.Prefix; base.MinimumCapacity = table.MinimumCapacity; } [DebuggerNonUserCode] protected LinkmanDataTable(SerializationInfo info, StreamingContext context) : base(info, context) { InitVars(); } [DebuggerNonUserCode] public void AddLinkmanRow(LinkmanRow row) { base.Rows.Add(row); } [DebuggerNonUserCode] public LinkmanRow AddLinkmanRow(string Name_Linkman, string Department_Linkman, string Duty_Linkman, string Tel_Linkman, string Fax_Linkman, string Mobile_Linkman, string Email_Linkman, bool IsMain_Linkman, string Comment_Linkman) { LinkmanRow linkmanRow = (LinkmanRow)NewRow(); linkmanRow.ItemArray = new object[9] { Name_Linkman, Department_Linkman, Duty_Linkman, Tel_Linkman, Fax_Linkman, Mobile_Linkman, Email_Linkman, IsMain_Linkman, Comment_Linkman }; base.Rows.Add(linkmanRow); return linkmanRow; } [DebuggerNonUserCode] public virtual IEnumerator GetEnumerator() { return base.Rows.GetEnumerator(); } [DebuggerNonUserCode] public override DataTable Clone() { LinkmanDataTable linkmanDataTable = (LinkmanDataTable)base.Clone(); linkmanDataTable.InitVars(); return linkmanDataTable; } [DebuggerNonUserCode] protected override DataTable CreateInstance() { return new LinkmanDataTable(); } [DebuggerNonUserCode] internal void InitVars() { columnName_Linkman = base.Columns["Name_Linkman"]; columnDepartment_Linkman = base.Columns["Department_Linkman"]; columnDuty_Linkman = base.Columns["Duty_Linkman"]; columnTel_Linkman = base.Columns["Tel_Linkman"]; columnFax_Linkman = base.Columns["Fax_Linkman"]; columnMobile_Linkman = base.Columns["Mobile_Linkman"]; columnEmail_Linkman = base.Columns["Email_Linkman"]; columnIsMain_Linkman = base.Columns["IsMain_Linkman"]; columnComment_Linkman = base.Columns["Comment_Linkman"]; } [DebuggerNonUserCode] private void InitClass() { columnName_Linkman = new DataColumn("Name_Linkman", typeof(string), null, MappingType.Element); base.Columns.Add(columnName_Linkman); columnDepartment_Linkman = new DataColumn("Department_Linkman", typeof(string), null, MappingType.Element); base.Columns.Add(columnDepartment_Linkman); columnDuty_Linkman = new DataColumn("Duty_Linkman", typeof(string), null, MappingType.Element); base.Columns.Add(columnDuty_Linkman); columnTel_Linkman = new DataColumn("Tel_Linkman", typeof(string), null, MappingType.Element); base.Columns.Add(columnTel_Linkman); columnFax_Linkman = new DataColumn("Fax_Linkman", typeof(string), null, MappingType.Element); base.Columns.Add(columnFax_Linkman); columnMobile_Linkman = new DataColumn("Mobile_Linkman", typeof(string), null, MappingType.Element); base.Columns.Add(columnMobile_Linkman); columnEmail_Linkman = new DataColumn("Email_Linkman", typeof(string), null, MappingType.Element); base.Columns.Add(columnEmail_Linkman); columnIsMain_Linkman = new DataColumn("IsMain_Linkman", typeof(bool), null, MappingType.Element); base.Columns.Add(columnIsMain_Linkman); columnComment_Linkman = new DataColumn("Comment_Linkman", typeof(string), null, MappingType.Element); base.Columns.Add(columnComment_Linkman); } [DebuggerNonUserCode] public LinkmanRow NewLinkmanRow() { return (LinkmanRow)NewRow(); } [DebuggerNonUserCode] protected override DataRow NewRowFromBuilder(DataRowBuilder builder) { return new LinkmanRow(builder); } [DebuggerNonUserCode] protected override Type GetRowType() { return typeof(LinkmanRow); } [DebuggerNonUserCode] protected override void OnRowChanged(DataRowChangeEventArgs e) { base.OnRowChanged(e); if (this.LinkmanRowChanged != null) { this.LinkmanRowChanged(this, new LinkmanRowChangeEvent((LinkmanRow)e.Row, e.Action)); } } [DebuggerNonUserCode] protected override void OnRowChanging(DataRowChangeEventArgs e) { base.OnRowChanging(e); if (this.LinkmanRowChanging != null) { this.LinkmanRowChanging(this, new LinkmanRowChangeEvent((LinkmanRow)e.Row, e.Action)); } } [DebuggerNonUserCode] protected override void OnRowDeleted(DataRowChangeEventArgs e) { base.OnRowDeleted(e); if (this.LinkmanRowDeleted != null) { this.LinkmanRowDeleted(this, new LinkmanRowChangeEvent((LinkmanRow)e.Row, e.Action)); } } [DebuggerNonUserCode] protected override void OnRowDeleting(DataRowChangeEventArgs e) { base.OnRowDeleting(e); if (this.LinkmanRowDeleting != null) { this.LinkmanRowDeleting(this, new LinkmanRowChangeEvent((LinkmanRow)e.Row, e.Action)); } } [DebuggerNonUserCode] public void RemoveLinkmanRow(LinkmanRow row) { base.Rows.Remove(row); } [DebuggerNonUserCode] public static XmlSchemaComplexType GetTypedTableSchema(XmlSchemaSet xs) { XmlSchemaComplexType xmlSchemaComplexType = new XmlSchemaComplexType(); XmlSchemaSequence xmlSchemaSequence = new XmlSchemaSequence(); dsFrmSupplier dsFrmSupplier = new dsFrmSupplier(); xs.Add(dsFrmSupplier.GetSchemaSerializable()); XmlSchemaAny xmlSchemaAny = new XmlSchemaAny(); xmlSchemaAny.Namespace = "http://www.w3.org/2001/XMLSchema"; xmlSchemaAny.MinOccurs = 0m; xmlSchemaAny.MaxOccurs = decimal.MaxValue; xmlSchemaAny.ProcessContents = XmlSchemaContentProcessing.Lax; xmlSchemaSequence.Items.Add(xmlSchemaAny); XmlSchemaAny xmlSchemaAny2 = new XmlSchemaAny(); xmlSchemaAny2.Namespace = "urn:schemas-microsoft-com:xml-diffgram-v1"; xmlSchemaAny2.MinOccurs = 1m; xmlSchemaAny2.ProcessContents = XmlSchemaContentProcessing.Lax; xmlSchemaSequence.Items.Add(xmlSchemaAny2); XmlSchemaAttribute xmlSchemaAttribute = new XmlSchemaAttribute(); xmlSchemaAttribute.Name = "namespace"; xmlSchemaAttribute.FixedValue = dsFrmSupplier.Namespace; xmlSchemaComplexType.Attributes.Add(xmlSchemaAttribute); XmlSchemaAttribute xmlSchemaAttribute2 = new XmlSchemaAttribute(); xmlSchemaAttribute2.Name = "tableTypeName"; xmlSchemaAttribute2.FixedValue = "LinkmanDataTable"; xmlSchemaComplexType.Attributes.Add(xmlSchemaAttribute2); xmlSchemaComplexType.Particle = xmlSchemaSequence; return xmlSchemaComplexType; } } [Serializable] [GeneratedCode("System.Data.Design.TypedDataSetGenerator", "2.0.0.0")] [XmlSchemaProvider("GetTypedTableSchema")] public class AppendInfoDataTable : DataTable, IEnumerable { private DataColumn columnCurrentCompany; private DataColumn columnCurrentUser; [DebuggerNonUserCode] public DataColumn CurrentCompanyColumn => columnCurrentCompany; [DebuggerNonUserCode] public DataColumn CurrentUserColumn => columnCurrentUser; [Browsable(false)] [DebuggerNonUserCode] public int Count => base.Rows.Count; [DebuggerNonUserCode] public AppendInfoRow this[int index] => (AppendInfoRow)base.Rows[index]; public event AppendInfoRowChangeEventHandler AppendInfoRowChanging; public event AppendInfoRowChangeEventHandler AppendInfoRowChanged; public event AppendInfoRowChangeEventHandler AppendInfoRowDeleting; public event AppendInfoRowChangeEventHandler AppendInfoRowDeleted; [DebuggerNonUserCode] public AppendInfoDataTable() { base.TableName = "AppendInfo"; BeginInit(); InitClass(); EndInit(); } [DebuggerNonUserCode] internal AppendInfoDataTable(DataTable table) { base.TableName = table.TableName; if (table.CaseSensitive != table.DataSet.CaseSensitive) { base.CaseSensitive = table.CaseSensitive; } if (table.Locale.ToString() != table.DataSet.Locale.ToString()) { base.Locale = table.Locale; } if (table.Namespace != table.DataSet.Namespace) { base.Namespace = table.Namespace; } base.Prefix = table.Prefix; base.MinimumCapacity = table.MinimumCapacity; } [DebuggerNonUserCode] protected AppendInfoDataTable(SerializationInfo info, StreamingContext context) : base(info, context) { InitVars(); } [DebuggerNonUserCode] public void AddAppendInfoRow(AppendInfoRow row) { base.Rows.Add(row); } [DebuggerNonUserCode] public AppendInfoRow AddAppendInfoRow(string CurrentCompany, string CurrentUser) { AppendInfoRow appendInfoRow = (AppendInfoRow)NewRow(); appendInfoRow.ItemArray = new object[2] { CurrentCompany, CurrentUser }; base.Rows.Add(appendInfoRow); return appendInfoRow; } [DebuggerNonUserCode] public virtual IEnumerator GetEnumerator() { return base.Rows.GetEnumerator(); } [DebuggerNonUserCode] public override DataTable Clone() { AppendInfoDataTable appendInfoDataTable = (AppendInfoDataTable)base.Clone(); appendInfoDataTable.InitVars(); return appendInfoDataTable; } [DebuggerNonUserCode] protected override DataTable CreateInstance() { return new AppendInfoDataTable(); } [DebuggerNonUserCode] internal void InitVars() { columnCurrentCompany = base.Columns["CurrentCompany"]; columnCurrentUser = base.Columns["CurrentUser"]; } [DebuggerNonUserCode] private void InitClass() { columnCurrentCompany = new DataColumn("CurrentCompany", typeof(string), null, MappingType.Element); base.Columns.Add(columnCurrentCompany); columnCurrentUser = new DataColumn("CurrentUser", typeof(string), null, MappingType.Element); base.Columns.Add(columnCurrentUser); } [DebuggerNonUserCode] public AppendInfoRow NewAppendInfoRow() { return (AppendInfoRow)NewRow(); } [DebuggerNonUserCode] protected override DataRow NewRowFromBuilder(DataRowBuilder builder) { return new AppendInfoRow(builder); } [DebuggerNonUserCode] protected override Type GetRowType() { return typeof(AppendInfoRow); } [DebuggerNonUserCode] protected override void OnRowChanged(DataRowChangeEventArgs e) { base.OnRowChanged(e); if (this.AppendInfoRowChanged != null) { this.AppendInfoRowChanged(this, new AppendInfoRowChangeEvent((AppendInfoRow)e.Row, e.Action)); } } [DebuggerNonUserCode] protected override void OnRowChanging(DataRowChangeEventArgs e) { base.OnRowChanging(e); if (this.AppendInfoRowChanging != null) { this.AppendInfoRowChanging(this, new AppendInfoRowChangeEvent((AppendInfoRow)e.Row, e.Action)); } } [DebuggerNonUserCode] protected override void OnRowDeleted(DataRowChangeEventArgs e) { base.OnRowDeleted(e); if (this.AppendInfoRowDeleted != null) { this.AppendInfoRowDeleted(this, new AppendInfoRowChangeEvent((AppendInfoRow)e.Row, e.Action)); } } [DebuggerNonUserCode] protected override void OnRowDeleting(DataRowChangeEventArgs e) { base.OnRowDeleting(e); if (this.AppendInfoRowDeleting != null) { this.AppendInfoRowDeleting(this, new AppendInfoRowChangeEvent((AppendInfoRow)e.Row, e.Action)); } } [DebuggerNonUserCode] public void RemoveAppendInfoRow(AppendInfoRow row) { base.Rows.Remove(row); } [DebuggerNonUserCode] public static XmlSchemaComplexType GetTypedTableSchema(XmlSchemaSet xs) { XmlSchemaComplexType xmlSchemaComplexType = new XmlSchemaComplexType(); XmlSchemaSequence xmlSchemaSequence = new XmlSchemaSequence(); dsFrmSupplier dsFrmSupplier = new dsFrmSupplier(); xs.Add(dsFrmSupplier.GetSchemaSerializable()); XmlSchemaAny xmlSchemaAny = new XmlSchemaAny(); xmlSchemaAny.Namespace = "http://www.w3.org/2001/XMLSchema"; xmlSchemaAny.MinOccurs = 0m; xmlSchemaAny.MaxOccurs = decimal.MaxValue; xmlSchemaAny.ProcessContents = XmlSchemaContentProcessing.Lax; xmlSchemaSequence.Items.Add(xmlSchemaAny); XmlSchemaAny xmlSchemaAny2 = new XmlSchemaAny(); xmlSchemaAny2.Namespace = "urn:schemas-microsoft-com:xml-diffgram-v1"; xmlSchemaAny2.MinOccurs = 1m; xmlSchemaAny2.ProcessContents = XmlSchemaContentProcessing.Lax; xmlSchemaSequence.Items.Add(xmlSchemaAny2); XmlSchemaAttribute xmlSchemaAttribute = new XmlSchemaAttribute(); xmlSchemaAttribute.Name = "namespace"; xmlSchemaAttribute.FixedValue = dsFrmSupplier.Namespace; xmlSchemaComplexType.Attributes.Add(xmlSchemaAttribute); XmlSchemaAttribute xmlSchemaAttribute2 = new XmlSchemaAttribute(); xmlSchemaAttribute2.Name = "tableTypeName"; xmlSchemaAttribute2.FixedValue = "AppendInfoDataTable"; xmlSchemaComplexType.Attributes.Add(xmlSchemaAttribute2); xmlSchemaComplexType.Particle = xmlSchemaSequence; return xmlSchemaComplexType; } } [GeneratedCode("System.Data.Design.TypedDataSetGenerator", "2.0.0.0")] public class TelephoneRow : DataRow { private TelephoneDataTable tableTelephone; [DebuggerNonUserCode] public string Name_Telephone { get { try { return (string)base[tableTelephone.Name_TelephoneColumn]; } catch (InvalidCastException innerException) { throw new StrongTypingException("The value for column 'Name_Telephone' in table 'Telephone' is DBNull.", innerException); } } set { base[tableTelephone.Name_TelephoneColumn] = value; } } [DebuggerNonUserCode] public string No_Telephone { get { try { return (string)base[tableTelephone.No_TelephoneColumn]; } catch (InvalidCastException innerException) { throw new StrongTypingException("The value for column 'No_Telephone' in table 'Telephone' is DBNull.", innerException); } } set { base[tableTelephone.No_TelephoneColumn] = value; } } [DebuggerNonUserCode] public bool Focus_Telephone { get { try { return (bool)base[tableTelephone.Focus_TelephoneColumn]; } catch (InvalidCastException innerException) { throw new StrongTypingException("The value for column 'Focus_Telephone' in table 'Telephone' is DBNull.", innerException); } } set { base[tableTelephone.Focus_TelephoneColumn] = value; } } [DebuggerNonUserCode] internal TelephoneRow(DataRowBuilder rb) : base(rb) { tableTelephone = (TelephoneDataTable)base.Table; } [DebuggerNonUserCode] public bool IsName_TelephoneNull() { return IsNull(tableTelephone.Name_TelephoneColumn); } [DebuggerNonUserCode] public void SetName_TelephoneNull() { base[tableTelephone.Name_TelephoneColumn] = Convert.DBNull; } [DebuggerNonUserCode] public bool IsNo_TelephoneNull() { return IsNull(tableTelephone.No_TelephoneColumn); } [DebuggerNonUserCode] public void SetNo_TelephoneNull() { base[tableTelephone.No_TelephoneColumn] = Convert.DBNull; } [DebuggerNonUserCode] public bool IsFocus_TelephoneNull() { return IsNull(tableTelephone.Focus_TelephoneColumn); } [DebuggerNonUserCode] public void SetFocus_TelephoneNull() { base[tableTelephone.Focus_TelephoneColumn] = Convert.DBNull; } } [GeneratedCode("System.Data.Design.TypedDataSetGenerator", "2.0.0.0")] public class PrincipalRow : DataRow { private PrincipalDataTable tablePrincipal; [DebuggerNonUserCode] public bool IsMain_Principal { get { try { return (bool)base[tablePrincipal.IsMain_PrincipalColumn]; } catch (InvalidCastException innerException) { throw new StrongTypingException("The value for column 'IsMain_Principal' in table 'Principal' is DBNull.", innerException); } } set { base[tablePrincipal.IsMain_PrincipalColumn] = value; } } [DebuggerNonUserCode] public string Comment_Principal { get { try { return (string)base[tablePrincipal.Comment_PrincipalColumn]; } catch (InvalidCastException innerException) { throw new StrongTypingException("The value for column 'Comment_Principal' in table 'Principal' is DBNull.", innerException); } } set { base[tablePrincipal.Comment_PrincipalColumn] = value; } } [DebuggerNonUserCode] public string Name_Employee { get { try { return (string)base[tablePrincipal.Name_EmployeeColumn]; } catch (InvalidCastException innerException) { throw new StrongTypingException("The value for column 'Name_Employee' in table 'Principal' is DBNull.", innerException); } } set { base[tablePrincipal.Name_EmployeeColumn] = value; } } [DebuggerNonUserCode] public string No_Employee { get { try { return (string)base[tablePrincipal.No_EmployeeColumn]; } catch (InvalidCastException innerException) { throw new StrongTypingException("The value for column 'No_Employee' in table 'Principal' is DBNull.", innerException); } } set { base[tablePrincipal.No_EmployeeColumn] = value; } } [DebuggerNonUserCode] internal PrincipalRow(DataRowBuilder rb) : base(rb) { tablePrincipal = (PrincipalDataTable)base.Table; } [DebuggerNonUserCode] public bool IsIsMain_PrincipalNull() { return IsNull(tablePrincipal.IsMain_PrincipalColumn); } [DebuggerNonUserCode] public void SetIsMain_PrincipalNull() { base[tablePrincipal.IsMain_PrincipalColumn] = Convert.DBNull; } [DebuggerNonUserCode] public bool IsComment_PrincipalNull() { return IsNull(tablePrincipal.Comment_PrincipalColumn); } [DebuggerNonUserCode] public void SetComment_PrincipalNull() { base[tablePrincipal.Comment_PrincipalColumn] = Convert.DBNull; } [DebuggerNonUserCode] public bool IsName_EmployeeNull() { return IsNull(tablePrincipal.Name_EmployeeColumn); } [DebuggerNonUserCode] public void SetName_EmployeeNull() { base[tablePrincipal.Name_EmployeeColumn] = Convert.DBNull; } [DebuggerNonUserCode] public bool IsNo_EmployeeNull() { return IsNull(tablePrincipal.No_EmployeeColumn); } [DebuggerNonUserCode] public void SetNo_EmployeeNull() { base[tablePrincipal.No_EmployeeColumn] = Convert.DBNull; } } [GeneratedCode("System.Data.Design.TypedDataSetGenerator", "2.0.0.0")] public class EmployeeRow : DataRow { private EmployeeDataTable tableEmployee; [DebuggerNonUserCode] public string No_Employee { get { try { return (string)base[tableEmployee.No_EmployeeColumn]; } catch (InvalidCastException innerException) { throw new StrongTypingException("The value for column 'No_Employee' in table 'Employee' is DBNull.", innerException); } } set { base[tableEmployee.No_EmployeeColumn] = value; } } [DebuggerNonUserCode] public string Name_Employee { get { try { return (string)base[tableEmployee.Name_EmployeeColumn]; } catch (InvalidCastException innerException) { throw new StrongTypingException("The value for column 'Name_Employee' in table 'Employee' is DBNull.", innerException); } } set { base[tableEmployee.Name_EmployeeColumn] = value; } } [DebuggerNonUserCode] public string EmployeeNo_Employee { get { try { return (string)base[tableEmployee.EmployeeNo_EmployeeColumn]; } catch (InvalidCastException innerException) { throw new StrongTypingException("The value for column 'EmployeeNo_Employee' in table 'Employee' is DBNull.", innerException); } } set { base[tableEmployee.EmployeeNo_EmployeeColumn] = value; } } [DebuggerNonUserCode] public string NameEng_Employee { get { try { return (string)base[tableEmployee.NameEng_EmployeeColumn]; } catch (InvalidCastException innerException) { throw new StrongTypingException("The value for column 'NameEng_Employee' in table 'Employee' is DBNull.", innerException); } } set { base[tableEmployee.NameEng_EmployeeColumn] = value; } } [DebuggerNonUserCode] public bool Gender_Employee { get { try { return (bool)base[tableEmployee.Gender_EmployeeColumn]; } catch (InvalidCastException innerException) { throw new StrongTypingException("The value for column 'Gender_Employee' in table 'Employee' is DBNull.", innerException); } } set { base[tableEmployee.Gender_EmployeeColumn] = value; } } [DebuggerNonUserCode] public int Country_Employee { get { try { return (int)base[tableEmployee.Country_EmployeeColumn]; } catch (InvalidCastException innerException) { throw new StrongTypingException("The value for column 'Country_Employee' in table 'Employee' is DBNull.", innerException); } } set { base[tableEmployee.Country_EmployeeColumn] = value; } } [DebuggerNonUserCode] public string Homeplace_Employee { get { try { return (string)base[tableEmployee.Homeplace_EmployeeColumn]; } catch (InvalidCastException innerException) { throw new StrongTypingException("The value for column 'Homeplace_Employee' in table 'Employee' is DBNull.", innerException); } } set { base[tableEmployee.Homeplace_EmployeeColumn] = value; } } [DebuggerNonUserCode] public string Nation_Employee { get { try { return (string)base[tableEmployee.Nation_EmployeeColumn]; } catch (InvalidCastException innerException) { throw new StrongTypingException("The value for column 'Nation_Employee' in table 'Employee' is DBNull.", innerException); } } set { base[tableEmployee.Nation_EmployeeColumn] = value; } } [DebuggerNonUserCode] public string IDNo_Employee { get { try { return (string)base[tableEmployee.IDNo_EmployeeColumn]; } catch (InvalidCastException innerException) { throw new StrongTypingException("The value for column 'IDNo_Employee' in table 'Employee' is DBNull.", innerException); } } set { base[tableEmployee.IDNo_EmployeeColumn] = value; } } [DebuggerNonUserCode] public string Passport_Employee { get { try { return (string)base[tableEmployee.Passport_EmployeeColumn]; } catch (InvalidCastException innerException) { throw new StrongTypingException("The value for column 'Passport_Employee' in table 'Employee' is DBNull.", innerException); } } set { base[tableEmployee.Passport_EmployeeColumn] = value; } } [DebuggerNonUserCode] public bool IsMarried_Employee { get { try { return (bool)base[tableEmployee.IsMarried_EmployeeColumn]; } catch (InvalidCastException innerException) { throw new StrongTypingException("The value for column 'IsMarried_Employee' in table 'Employee' is DBNull.", innerException); } } set { base[tableEmployee.IsMarried_EmployeeColumn] = value; } } [DebuggerNonUserCode] public DateTime CreateDate_Employee { get { try { return (DateTime)base[tableEmployee.CreateDate_EmployeeColumn]; } catch (InvalidCastException innerException) { throw new StrongTypingException("The value for column 'CreateDate_Employee' in table 'Employee' is DBNull.", innerException); } } set { base[tableEmployee.CreateDate_EmployeeColumn] = value; } } [DebuggerNonUserCode] public string Duty_Employee { get { try { return (string)base[tableEmployee.Duty_EmployeeColumn]; } catch (InvalidCastException innerException) { throw new StrongTypingException("The value for column 'Duty_Employee' in table 'Employee' is DBNull.", innerException); } } set { base[tableEmployee.Duty_EmployeeColumn] = value; } } [DebuggerNonUserCode] public decimal Probation_Employee { get { try { return (decimal)base[tableEmployee.Probation_EmployeeColumn]; } catch (InvalidCastException innerException) { throw new StrongTypingException("The value for column 'Probation_Employee' in table 'Employee' is DBNull.", innerException); } } set { base[tableEmployee.Probation_EmployeeColumn] = value; } } [DebuggerNonUserCode] public DateTime OnJobDate_Employee { get { try { return (DateTime)base[tableEmployee.OnJobDate_EmployeeColumn]; } catch (InvalidCastException innerException) { throw new StrongTypingException("The value for column 'OnJobDate_Employee' in table 'Employee' is DBNull.", innerException); } } set { base[tableEmployee.OnJobDate_EmployeeColumn] = value; } } [DebuggerNonUserCode] public DateTime OnDuty_Employee { get { try { return (DateTime)base[tableEmployee.OnDuty_EmployeeColumn]; } catch (InvalidCastException innerException) { throw new StrongTypingException("The value for column 'OnDuty_Employee' in table 'Employee' is DBNull.", innerException); } } set { base[tableEmployee.OnDuty_EmployeeColumn] = value; } } [DebuggerNonUserCode] public int ObJobStatus_Employee { get { try { return (int)base[tableEmployee.ObJobStatus_EmployeeColumn]; } catch (InvalidCastException innerException) { throw new StrongTypingException("The value for column 'ObJobStatus_Employee' in table 'Employee' is DBNull.", innerException); } } set { base[tableEmployee.ObJobStatus_EmployeeColumn] = value; } } [DebuggerNonUserCode] public DateTime OffDuty_Employee { get { try { return (DateTime)base[tableEmployee.OffDuty_EmployeeColumn]; } catch (InvalidCastException innerException) { throw new StrongTypingException("The value for column 'OffDuty_Employee' in table 'Employee' is DBNull.", innerException); } } set { base[tableEmployee.OffDuty_EmployeeColumn] = value; } } [DebuggerNonUserCode] public DateTime SuspendDate_Employee { get { try { return (DateTime)base[tableEmployee.SuspendDate_EmployeeColumn]; } catch (InvalidCastException innerException) { throw new StrongTypingException("The value for column 'SuspendDate_Employee' in table 'Employee' is DBNull.", innerException); } } set { base[tableEmployee.SuspendDate_EmployeeColumn] = value; } } [DebuggerNonUserCode] public string Tel_Employee { get { try { return (string)base[tableEmployee.Tel_EmployeeColumn]; } catch (InvalidCastException innerException) { throw new StrongTypingException("The value for column 'Tel_Employee' in table 'Employee' is DBNull.", innerException); } } set { base[tableEmployee.Tel_EmployeeColumn] = value; } } [DebuggerNonUserCode] public string EMail_Employee { get { try { return (string)base[tableEmployee.EMail_EmployeeColumn]; } catch (InvalidCastException innerException) { throw new StrongTypingException("The value for column 'EMail_Employee' in table 'Employee' is DBNull.", innerException); } } set { base[tableEmployee.EMail_EmployeeColumn] = value; } } [DebuggerNonUserCode] public string Address_Employee { get { try { return (string)base[tableEmployee.Address_EmployeeColumn]; } catch (InvalidCastException innerException) { throw new StrongTypingException("The value for column 'Address_Employee' in table 'Employee' is DBNull.", innerException); } } set { base[tableEmployee.Address_EmployeeColumn] = value; } } [DebuggerNonUserCode] public string Comment_Employee { get { try { return (string)base[tableEmployee.Comment_EmployeeColumn]; } catch (InvalidCastException innerException) { throw new StrongTypingException("The value for column 'Comment_Employee' in table 'Employee' is DBNull.", innerException); } } set { base[tableEmployee.Comment_EmployeeColumn] = value; } } [DebuggerNonUserCode] public DateTime LastModDate_Employee { get { try { return (DateTime)base[tableEmployee.LastModDate_EmployeeColumn]; } catch (InvalidCastException innerException) { throw new StrongTypingException("The value for column 'LastModDate_Employee' in table 'Employee' is DBNull.", innerException); } } set { base[tableEmployee.LastModDate_EmployeeColumn] = value; } } [DebuggerNonUserCode] internal EmployeeRow(DataRowBuilder rb) : base(rb) { tableEmployee = (EmployeeDataTable)base.Table; } [DebuggerNonUserCode] public bool IsNo_EmployeeNull() { return IsNull(tableEmployee.No_EmployeeColumn); } [DebuggerNonUserCode] public void SetNo_EmployeeNull() { base[tableEmployee.No_EmployeeColumn] = Convert.DBNull; } [DebuggerNonUserCode] public bool IsName_EmployeeNull() { return IsNull(tableEmployee.Name_EmployeeColumn); } [DebuggerNonUserCode] public void SetName_EmployeeNull() { base[tableEmployee.Name_EmployeeColumn] = Convert.DBNull; } [DebuggerNonUserCode] public bool IsEmployeeNo_EmployeeNull() { return IsNull(tableEmployee.EmployeeNo_EmployeeColumn); } [DebuggerNonUserCode] public void SetEmployeeNo_EmployeeNull() { base[tableEmployee.EmployeeNo_EmployeeColumn] = Convert.DBNull; } [DebuggerNonUserCode] public bool IsNameEng_EmployeeNull() { return IsNull(tableEmployee.NameEng_EmployeeColumn); } [DebuggerNonUserCode] public void SetNameEng_EmployeeNull() { base[tableEmployee.NameEng_EmployeeColumn] = Convert.DBNull; } [DebuggerNonUserCode] public bool IsGender_EmployeeNull() { return IsNull(tableEmployee.Gender_EmployeeColumn); } [DebuggerNonUserCode] public void SetGender_EmployeeNull() { base[tableEmployee.Gender_EmployeeColumn] = Convert.DBNull; } [DebuggerNonUserCode] public bool IsCountry_EmployeeNull() { return IsNull(tableEmployee.Country_EmployeeColumn); } [DebuggerNonUserCode] public void SetCountry_EmployeeNull() { base[tableEmployee.Country_EmployeeColumn] = Convert.DBNull; } [DebuggerNonUserCode] public bool IsHomeplace_EmployeeNull() { return IsNull(tableEmployee.Homeplace_EmployeeColumn); } [DebuggerNonUserCode] public void SetHomeplace_EmployeeNull() { base[tableEmployee.Homeplace_EmployeeColumn] = Convert.DBNull; } [DebuggerNonUserCode] public bool IsNation_EmployeeNull() { return IsNull(tableEmployee.Nation_EmployeeColumn); } [DebuggerNonUserCode] public void SetNation_EmployeeNull() { base[tableEmployee.Nation_EmployeeColumn] = Convert.DBNull; } [DebuggerNonUserCode] public bool IsIDNo_EmployeeNull() { return IsNull(tableEmployee.IDNo_EmployeeColumn); } [DebuggerNonUserCode] public void SetIDNo_EmployeeNull() { base[tableEmployee.IDNo_EmployeeColumn] = Convert.DBNull; } [DebuggerNonUserCode] public bool IsPassport_EmployeeNull() { return IsNull(tableEmployee.Passport_EmployeeColumn); } [DebuggerNonUserCode] public void SetPassport_EmployeeNull() { base[tableEmployee.Passport_EmployeeColumn] = Convert.DBNull; } [DebuggerNonUserCode] public bool IsIsMarried_EmployeeNull() { return IsNull(tableEmployee.IsMarried_EmployeeColumn); } [DebuggerNonUserCode] public void SetIsMarried_EmployeeNull() { base[tableEmployee.IsMarried_EmployeeColumn] = Convert.DBNull; } [DebuggerNonUserCode] public bool IsCreateDate_EmployeeNull() { return IsNull(tableEmployee.CreateDate_EmployeeColumn); } [DebuggerNonUserCode] public void SetCreateDate_EmployeeNull() { base[tableEmployee.CreateDate_EmployeeColumn] = Convert.DBNull; } [DebuggerNonUserCode] public bool IsDuty_EmployeeNull() { return IsNull(tableEmployee.Duty_EmployeeColumn); } [DebuggerNonUserCode] public void SetDuty_EmployeeNull() { base[tableEmployee.Duty_EmployeeColumn] = Convert.DBNull; } [DebuggerNonUserCode] public bool IsProbation_EmployeeNull() { return IsNull(tableEmployee.Probation_EmployeeColumn); } [DebuggerNonUserCode] public void SetProbation_EmployeeNull() { base[tableEmployee.Probation_EmployeeColumn] = Convert.DBNull; } [DebuggerNonUserCode] public bool IsOnJobDate_EmployeeNull() { return IsNull(tableEmployee.OnJobDate_EmployeeColumn); } [DebuggerNonUserCode] public void SetOnJobDate_EmployeeNull() { base[tableEmployee.OnJobDate_EmployeeColumn] = Convert.DBNull; } [DebuggerNonUserCode] public bool IsOnDuty_EmployeeNull() { return IsNull(tableEmployee.OnDuty_EmployeeColumn); } [DebuggerNonUserCode] public void SetOnDuty_EmployeeNull() { base[tableEmployee.OnDuty_EmployeeColumn] = Convert.DBNull; } [DebuggerNonUserCode] public bool IsObJobStatus_EmployeeNull() { return IsNull(tableEmployee.ObJobStatus_EmployeeColumn); } [DebuggerNonUserCode] public void SetObJobStatus_EmployeeNull() { base[tableEmployee.ObJobStatus_EmployeeColumn] = Convert.DBNull; } [DebuggerNonUserCode] public bool IsOffDuty_EmployeeNull() { return IsNull(tableEmployee.OffDuty_EmployeeColumn); } [DebuggerNonUserCode] public void SetOffDuty_EmployeeNull() { base[tableEmployee.OffDuty_EmployeeColumn] = Convert.DBNull; } [DebuggerNonUserCode] public bool IsSuspendDate_EmployeeNull() { return IsNull(tableEmployee.SuspendDate_EmployeeColumn); } [DebuggerNonUserCode] public void SetSuspendDate_EmployeeNull() { base[tableEmployee.SuspendDate_EmployeeColumn] = Convert.DBNull; } [DebuggerNonUserCode] public bool IsTel_EmployeeNull() { return IsNull(tableEmployee.Tel_EmployeeColumn); } [DebuggerNonUserCode] public void SetTel_EmployeeNull() { base[tableEmployee.Tel_EmployeeColumn] = Convert.DBNull; } [DebuggerNonUserCode] public bool IsEMail_EmployeeNull() { return IsNull(tableEmployee.EMail_EmployeeColumn); } [DebuggerNonUserCode] public void SetEMail_EmployeeNull() { base[tableEmployee.EMail_EmployeeColumn] = Convert.DBNull; } [DebuggerNonUserCode] public bool IsAddress_EmployeeNull() { return IsNull(tableEmployee.Address_EmployeeColumn); } [DebuggerNonUserCode] public void SetAddress_EmployeeNull() { base[tableEmployee.Address_EmployeeColumn] = Convert.DBNull; } [DebuggerNonUserCode] public bool IsComment_EmployeeNull() { return IsNull(tableEmployee.Comment_EmployeeColumn); } [DebuggerNonUserCode] public void SetComment_EmployeeNull() { base[tableEmployee.Comment_EmployeeColumn] = Convert.DBNull; } [DebuggerNonUserCode] public bool IsLastModDate_EmployeeNull() { return IsNull(tableEmployee.LastModDate_EmployeeColumn); } [DebuggerNonUserCode] public void SetLastModDate_EmployeeNull() { base[tableEmployee.LastModDate_EmployeeColumn] = Convert.DBNull; } } [GeneratedCode("System.Data.Design.TypedDataSetGenerator", "2.0.0.0")] public class FaxRow : DataRow { private FaxDataTable tableFax; [DebuggerNonUserCode] public string Name_Fax { get { try { return (string)base[tableFax.Name_FaxColumn]; } catch (InvalidCastException innerException) { throw new StrongTypingException("The value for column 'Name_Fax' in table 'Fax' is DBNull.", innerException); } } set { base[tableFax.Name_FaxColumn] = value; } } [DebuggerNonUserCode] public string No_Fax { get { try { return (string)base[tableFax.No_FaxColumn]; } catch (InvalidCastException innerException) { throw new StrongTypingException("The value for column 'No_Fax' in table 'Fax' is DBNull.", innerException); } } set { base[tableFax.No_FaxColumn] = value; } } [DebuggerNonUserCode] public bool Focus_Fax { get { try { return (bool)base[tableFax.Focus_FaxColumn]; } catch (InvalidCastException innerException) { throw new StrongTypingException("The value for column 'Focus_Fax' in table 'Fax' is DBNull.", innerException); } } set { base[tableFax.Focus_FaxColumn] = value; } } [DebuggerNonUserCode] internal FaxRow(DataRowBuilder rb) : base(rb) { tableFax = (FaxDataTable)base.Table; } [DebuggerNonUserCode] public bool IsName_FaxNull() { return IsNull(tableFax.Name_FaxColumn); } [DebuggerNonUserCode] public void SetName_FaxNull() { base[tableFax.Name_FaxColumn] = Convert.DBNull; } [DebuggerNonUserCode] public bool IsNo_FaxNull() { return IsNull(tableFax.No_FaxColumn); } [DebuggerNonUserCode] public void SetNo_FaxNull() { base[tableFax.No_FaxColumn] = Convert.DBNull; } [DebuggerNonUserCode] public bool IsFocus_FaxNull() { return IsNull(tableFax.Focus_FaxColumn); } [DebuggerNonUserCode] public void SetFocus_FaxNull() { base[tableFax.Focus_FaxColumn] = Convert.DBNull; } } [GeneratedCode("System.Data.Design.TypedDataSetGenerator", "2.0.0.0")] public class SupplierRow : DataRow { private SupplierDataTable tableSupplier; [DebuggerNonUserCode] public string No_Supplier { get { try { return (string)base[tableSupplier.No_SupplierColumn]; } catch (InvalidCastException innerException) { throw new StrongTypingException("The value for column 'No_Supplier' in table 'Supplier' is DBNull.", innerException); } } set { base[tableSupplier.No_SupplierColumn] = value; } } [DebuggerNonUserCode] public string ShortName_Supplier { get { try { return (string)base[tableSupplier.ShortName_SupplierColumn]; } catch (InvalidCastException innerException) { throw new StrongTypingException("The value for column 'ShortName_Supplier' in table 'Supplier' is DBNull.", innerException); } } set { base[tableSupplier.ShortName_SupplierColumn] = value; } } [DebuggerNonUserCode] public string Name_Supplier { get { try { return (string)base[tableSupplier.Name_SupplierColumn]; } catch (InvalidCastException innerException) { throw new StrongTypingException("The value for column 'Name_Supplier' in table 'Supplier' is DBNull.", innerException); } } set { base[tableSupplier.Name_SupplierColumn] = value; } } [DebuggerNonUserCode] public string RegistedAddress_Supplier { get { try { return (string)base[tableSupplier.RegistedAddress_SupplierColumn]; } catch (InvalidCastException innerException) { throw new StrongTypingException("The value for column 'RegistedAddress_Supplier' in table 'Supplier' is DBNull.", innerException); } } set { base[tableSupplier.RegistedAddress_SupplierColumn] = value; } } [DebuggerNonUserCode] public int Country_Supplier { get { try { return (int)base[tableSupplier.Country_SupplierColumn]; } catch (InvalidCastException innerException) { throw new StrongTypingException("The value for column 'Country_Supplier' in table 'Supplier' is DBNull.", innerException); } } set { base[tableSupplier.Country_SupplierColumn] = value; } } [DebuggerNonUserCode] public string PostalCode_Supplier { get { try { return (string)base[tableSupplier.PostalCode_SupplierColumn]; } catch (InvalidCastException innerException) { throw new StrongTypingException("The value for column 'PostalCode_Supplier' in table 'Supplier' is DBNull.", innerException); } } set { base[tableSupplier.PostalCode_SupplierColumn] = value; } } [DebuggerNonUserCode] public DateTime CreateDate_Supplier { get { try { return (DateTime)base[tableSupplier.CreateDate_SupplierColumn]; } catch (InvalidCastException innerException) { throw new StrongTypingException("The value for column 'CreateDate_Supplier' in table 'Supplier' is DBNull.", innerException); } } set { base[tableSupplier.CreateDate_SupplierColumn] = value; } } [DebuggerNonUserCode] public string Comment_Supplier { get { try { return (string)base[tableSupplier.Comment_SupplierColumn]; } catch (InvalidCastException innerException) { throw new StrongTypingException("The value for column 'Comment_Supplier' in table 'Supplier' is DBNull.", innerException); } } set { base[tableSupplier.Comment_SupplierColumn] = value; } } [DebuggerNonUserCode] public DateTime SuspendDate_Supplier { get { try { return (DateTime)base[tableSupplier.SuspendDate_SupplierColumn]; } catch (InvalidCastException innerException) { throw new StrongTypingException("The value for column 'SuspendDate_Supplier' in table 'Supplier' is DBNull.", innerException); } } set { base[tableSupplier.SuspendDate_SupplierColumn] = value; } } [DebuggerNonUserCode] public DateTime LastModDate_Supplier { get { try { return (DateTime)base[tableSupplier.LastModDate_SupplierColumn]; } catch (InvalidCastException innerException) { throw new StrongTypingException("The value for column 'LastModDate_Supplier' in table 'Supplier' is DBNull.", innerException); } } set { base[tableSupplier.LastModDate_SupplierColumn] = value; } } [DebuggerNonUserCode] public string CreatorName_Supplier { get { try { return (string)base[tableSupplier.CreatorName_SupplierColumn]; } catch (InvalidCastException innerException) { throw new StrongTypingException("The value for column 'CreatorName_Supplier' in table 'Supplier' is DBNull.", innerException); } } set { base[tableSupplier.CreatorName_SupplierColumn] = value; } } [DebuggerNonUserCode] public string LastModUser_SupplierName { get { try { return (string)base[tableSupplier.LastModUser_SupplierNameColumn]; } catch (InvalidCastException innerException) { throw new StrongTypingException("The value for column 'LastModUser_SupplierName' in table 'Supplier' is DBNull.", innerException); } } set { base[tableSupplier.LastModUser_SupplierNameColumn] = value; } } [DebuggerNonUserCode] public string CountryName { get { try { return (string)base[tableSupplier.CountryNameColumn]; } catch (InvalidCastException innerException) { throw new StrongTypingException("The value for column 'CountryName' in table 'Supplier' is DBNull.", innerException); } } set { base[tableSupplier.CountryNameColumn] = value; } } [DebuggerNonUserCode] internal SupplierRow(DataRowBuilder rb) : base(rb) { tableSupplier = (SupplierDataTable)base.Table; } [DebuggerNonUserCode] public bool IsNo_SupplierNull() { return IsNull(tableSupplier.No_SupplierColumn); } [DebuggerNonUserCode] public void SetNo_SupplierNull() { base[tableSupplier.No_SupplierColumn] = Convert.DBNull; } [DebuggerNonUserCode] public bool IsShortName_SupplierNull() { return IsNull(tableSupplier.ShortName_SupplierColumn); } [DebuggerNonUserCode] public void SetShortName_SupplierNull() { base[tableSupplier.ShortName_SupplierColumn] = Convert.DBNull; } [DebuggerNonUserCode] public bool IsName_SupplierNull() { return IsNull(tableSupplier.Name_SupplierColumn); } [DebuggerNonUserCode] public void SetName_SupplierNull() { base[tableSupplier.Name_SupplierColumn] = Convert.DBNull; } [DebuggerNonUserCode] public bool IsRegistedAddress_SupplierNull() { return IsNull(tableSupplier.RegistedAddress_SupplierColumn); } [DebuggerNonUserCode] public void SetRegistedAddress_SupplierNull() { base[tableSupplier.RegistedAddress_SupplierColumn] = Convert.DBNull; } [DebuggerNonUserCode] public bool IsCountry_SupplierNull() { return IsNull(tableSupplier.Country_SupplierColumn); } [DebuggerNonUserCode] public void SetCountry_SupplierNull() { base[tableSupplier.Country_SupplierColumn] = Convert.DBNull; } [DebuggerNonUserCode] public bool IsPostalCode_SupplierNull() { return IsNull(tableSupplier.PostalCode_SupplierColumn); } [DebuggerNonUserCode] public void SetPostalCode_SupplierNull() { base[tableSupplier.PostalCode_SupplierColumn] = Convert.DBNull; } [DebuggerNonUserCode] public bool IsCreateDate_SupplierNull() { return IsNull(tableSupplier.CreateDate_SupplierColumn); } [DebuggerNonUserCode] public void SetCreateDate_SupplierNull() { base[tableSupplier.CreateDate_SupplierColumn] = Convert.DBNull; } [DebuggerNonUserCode] public bool IsComment_SupplierNull() { return IsNull(tableSupplier.Comment_SupplierColumn); } [DebuggerNonUserCode] public void SetComment_SupplierNull() { base[tableSupplier.Comment_SupplierColumn] = Convert.DBNull; } [DebuggerNonUserCode] public bool IsSuspendDate_SupplierNull() { return IsNull(tableSupplier.SuspendDate_SupplierColumn); } [DebuggerNonUserCode] public void SetSuspendDate_SupplierNull() { base[tableSupplier.SuspendDate_SupplierColumn] = Convert.DBNull; } [DebuggerNonUserCode] public bool IsLastModDate_SupplierNull() { return IsNull(tableSupplier.LastModDate_SupplierColumn); } [DebuggerNonUserCode] public void SetLastModDate_SupplierNull() { base[tableSupplier.LastModDate_SupplierColumn] = Convert.DBNull; } [DebuggerNonUserCode] public bool IsCreatorName_SupplierNull() { return IsNull(tableSupplier.CreatorName_SupplierColumn); } [DebuggerNonUserCode] public void SetCreatorName_SupplierNull() { base[tableSupplier.CreatorName_SupplierColumn] = Convert.DBNull; } [DebuggerNonUserCode] public bool IsLastModUser_SupplierNameNull() { return IsNull(tableSupplier.LastModUser_SupplierNameColumn); } [DebuggerNonUserCode] public void SetLastModUser_SupplierNameNull() { base[tableSupplier.LastModUser_SupplierNameColumn] = Convert.DBNull; } [DebuggerNonUserCode] public bool IsCountryNameNull() { return IsNull(tableSupplier.CountryNameColumn); } [DebuggerNonUserCode] public void SetCountryNameNull() { base[tableSupplier.CountryNameColumn] = Convert.DBNull; } } [GeneratedCode("System.Data.Design.TypedDataSetGenerator", "2.0.0.0")] public class LinkmanRow : DataRow { private LinkmanDataTable tableLinkman; [DebuggerNonUserCode] public string Name_Linkman { get { try { return (string)base[tableLinkman.Name_LinkmanColumn]; } catch (InvalidCastException innerException) { throw new StrongTypingException("The value for column 'Name_Linkman' in table 'Linkman' is DBNull.", innerException); } } set { base[tableLinkman.Name_LinkmanColumn] = value; } } [DebuggerNonUserCode] public string Department_Linkman { get { try { return (string)base[tableLinkman.Department_LinkmanColumn]; } catch (InvalidCastException innerException) { throw new StrongTypingException("The value for column 'Department_Linkman' in table 'Linkman' is DBNull.", innerException); } } set { base[tableLinkman.Department_LinkmanColumn] = value; } } [DebuggerNonUserCode] public string Duty_Linkman { get { try { return (string)base[tableLinkman.Duty_LinkmanColumn]; } catch (InvalidCastException innerException) { throw new StrongTypingException("The value for column 'Duty_Linkman' in table 'Linkman' is DBNull.", innerException); } } set { base[tableLinkman.Duty_LinkmanColumn] = value; } } [DebuggerNonUserCode] public string Tel_Linkman { get { try { return (string)base[tableLinkman.Tel_LinkmanColumn]; } catch (InvalidCastException innerException) { throw new StrongTypingException("The value for column 'Tel_Linkman' in table 'Linkman' is DBNull.", innerException); } } set { base[tableLinkman.Tel_LinkmanColumn] = value; } } [DebuggerNonUserCode] public string Fax_Linkman { get { try { return (string)base[tableLinkman.Fax_LinkmanColumn]; } catch (InvalidCastException innerException) { throw new StrongTypingException("The value for column 'Fax_Linkman' in table 'Linkman' is DBNull.", innerException); } } set { base[tableLinkman.Fax_LinkmanColumn] = value; } } [DebuggerNonUserCode] public string Mobile_Linkman { get { try { return (string)base[tableLinkman.Mobile_LinkmanColumn]; } catch (InvalidCastException innerException) { throw new StrongTypingException("The value for column 'Mobile_Linkman' in table 'Linkman' is DBNull.", innerException); } } set { base[tableLinkman.Mobile_LinkmanColumn] = value; } } [DebuggerNonUserCode] public string Email_Linkman { get { try { return (string)base[tableLinkman.Email_LinkmanColumn]; } catch (InvalidCastException innerException) { throw new StrongTypingException("The value for column 'Email_Linkman' in table 'Linkman' is DBNull.", innerException); } } set { base[tableLinkman.Email_LinkmanColumn] = value; } } [DebuggerNonUserCode] public bool IsMain_Linkman { get { try { return (bool)base[tableLinkman.IsMain_LinkmanColumn]; } catch (InvalidCastException innerException) { throw new StrongTypingException("The value for column 'IsMain_Linkman' in table 'Linkman' is DBNull.", innerException); } } set { base[tableLinkman.IsMain_LinkmanColumn] = value; } } [DebuggerNonUserCode] public string Comment_Linkman { get { try { return (string)base[tableLinkman.Comment_LinkmanColumn]; } catch (InvalidCastException innerException) { throw new StrongTypingException("The value for column 'Comment_Linkman' in table 'Linkman' is DBNull.", innerException); } } set { base[tableLinkman.Comment_LinkmanColumn] = value; } } [DebuggerNonUserCode] internal LinkmanRow(DataRowBuilder rb) : base(rb) { tableLinkman = (LinkmanDataTable)base.Table; } [DebuggerNonUserCode] public bool IsName_LinkmanNull() { return IsNull(tableLinkman.Name_LinkmanColumn); } [DebuggerNonUserCode] public void SetName_LinkmanNull() { base[tableLinkman.Name_LinkmanColumn] = Convert.DBNull; } [DebuggerNonUserCode] public bool IsDepartment_LinkmanNull() { return IsNull(tableLinkman.Department_LinkmanColumn); } [DebuggerNonUserCode] public void SetDepartment_LinkmanNull() { base[tableLinkman.Department_LinkmanColumn] = Convert.DBNull; } [DebuggerNonUserCode] public bool IsDuty_LinkmanNull() { return IsNull(tableLinkman.Duty_LinkmanColumn); } [DebuggerNonUserCode] public void SetDuty_LinkmanNull() { base[tableLinkman.Duty_LinkmanColumn] = Convert.DBNull; } [DebuggerNonUserCode] public bool IsTel_LinkmanNull() { return IsNull(tableLinkman.Tel_LinkmanColumn); } [DebuggerNonUserCode] public void SetTel_LinkmanNull() { base[tableLinkman.Tel_LinkmanColumn] = Convert.DBNull; } [DebuggerNonUserCode] public bool IsFax_LinkmanNull() { return IsNull(tableLinkman.Fax_LinkmanColumn); } [DebuggerNonUserCode] public void SetFax_LinkmanNull() { base[tableLinkman.Fax_LinkmanColumn] = Convert.DBNull; } [DebuggerNonUserCode] public bool IsMobile_LinkmanNull() { return IsNull(tableLinkman.Mobile_LinkmanColumn); } [DebuggerNonUserCode] public void SetMobile_LinkmanNull() { base[tableLinkman.Mobile_LinkmanColumn] = Convert.DBNull; } [DebuggerNonUserCode] public bool IsEmail_LinkmanNull() { return IsNull(tableLinkman.Email_LinkmanColumn); } [DebuggerNonUserCode] public void SetEmail_LinkmanNull() { base[tableLinkman.Email_LinkmanColumn] = Convert.DBNull; } [DebuggerNonUserCode] public bool IsIsMain_LinkmanNull() { return IsNull(tableLinkman.IsMain_LinkmanColumn); } [DebuggerNonUserCode] public void SetIsMain_LinkmanNull() { base[tableLinkman.IsMain_LinkmanColumn] = Convert.DBNull; } [DebuggerNonUserCode] public bool IsComment_LinkmanNull() { return IsNull(tableLinkman.Comment_LinkmanColumn); } [DebuggerNonUserCode] public void SetComment_LinkmanNull() { base[tableLinkman.Comment_LinkmanColumn] = Convert.DBNull; } } [GeneratedCode("System.Data.Design.TypedDataSetGenerator", "2.0.0.0")] public class AppendInfoRow : DataRow { private AppendInfoDataTable tableAppendInfo; [DebuggerNonUserCode] public string CurrentCompany { get { try { return (string)base[tableAppendInfo.CurrentCompanyColumn]; } catch (InvalidCastException innerException) { throw new StrongTypingException("The value for column 'CurrentCompany' in table 'AppendInfo' is DBNull.", innerException); } } set { base[tableAppendInfo.CurrentCompanyColumn] = value; } } [DebuggerNonUserCode] public string CurrentUser { get { try { return (string)base[tableAppendInfo.CurrentUserColumn]; } catch (InvalidCastException innerException) { throw new StrongTypingException("The value for column 'CurrentUser' in table 'AppendInfo' is DBNull.", innerException); } } set { base[tableAppendInfo.CurrentUserColumn] = value; } } [DebuggerNonUserCode] internal AppendInfoRow(DataRowBuilder rb) : base(rb) { tableAppendInfo = (AppendInfoDataTable)base.Table; } [DebuggerNonUserCode] public bool IsCurrentCompanyNull() { return IsNull(tableAppendInfo.CurrentCompanyColumn); } [DebuggerNonUserCode] public void SetCurrentCompanyNull() { base[tableAppendInfo.CurrentCompanyColumn] = Convert.DBNull; } [DebuggerNonUserCode] public bool IsCurrentUserNull() { return IsNull(tableAppendInfo.CurrentUserColumn); } [DebuggerNonUserCode] public void SetCurrentUserNull() { base[tableAppendInfo.CurrentUserColumn] = Convert.DBNull; } } [GeneratedCode("System.Data.Design.TypedDataSetGenerator", "2.0.0.0")] public class TelephoneRowChangeEvent : EventArgs { private TelephoneRow eventRow; private DataRowAction eventAction; [DebuggerNonUserCode] public TelephoneRow Row => eventRow; [DebuggerNonUserCode] public DataRowAction Action => eventAction; [DebuggerNonUserCode] public TelephoneRowChangeEvent(TelephoneRow row, DataRowAction action) { eventRow = row; eventAction = action; } } [GeneratedCode("System.Data.Design.TypedDataSetGenerator", "2.0.0.0")] public class PrincipalRowChangeEvent : EventArgs { private PrincipalRow eventRow; private DataRowAction eventAction; [DebuggerNonUserCode] public PrincipalRow Row => eventRow; [DebuggerNonUserCode] public DataRowAction Action => eventAction; [DebuggerNonUserCode] public PrincipalRowChangeEvent(PrincipalRow row, DataRowAction action) { eventRow = row; eventAction = action; } } [GeneratedCode("System.Data.Design.TypedDataSetGenerator", "2.0.0.0")] public class EmployeeRowChangeEvent : EventArgs { private EmployeeRow eventRow; private DataRowAction eventAction; [DebuggerNonUserCode] public EmployeeRow Row => eventRow; [DebuggerNonUserCode] public DataRowAction Action => eventAction; [DebuggerNonUserCode] public EmployeeRowChangeEvent(EmployeeRow row, DataRowAction action) { eventRow = row; eventAction = action; } } [GeneratedCode("System.Data.Design.TypedDataSetGenerator", "2.0.0.0")] public class FaxRowChangeEvent : EventArgs { private FaxRow eventRow; private DataRowAction eventAction; [DebuggerNonUserCode] public FaxRow Row => eventRow; [DebuggerNonUserCode] public DataRowAction Action => eventAction; [DebuggerNonUserCode] public FaxRowChangeEvent(FaxRow row, DataRowAction action) { eventRow = row; eventAction = action; } } [GeneratedCode("System.Data.Design.TypedDataSetGenerator", "2.0.0.0")] public class SupplierRowChangeEvent : EventArgs { private SupplierRow eventRow; private DataRowAction eventAction; [DebuggerNonUserCode] public SupplierRow Row => eventRow; [DebuggerNonUserCode] public DataRowAction Action => eventAction; [DebuggerNonUserCode] public SupplierRowChangeEvent(SupplierRow row, DataRowAction action) { eventRow = row; eventAction = action; } } [GeneratedCode("System.Data.Design.TypedDataSetGenerator", "2.0.0.0")] public class LinkmanRowChangeEvent : EventArgs { private LinkmanRow eventRow; private DataRowAction eventAction; [DebuggerNonUserCode] public LinkmanRow Row => eventRow; [DebuggerNonUserCode] public DataRowAction Action => eventAction; [DebuggerNonUserCode] public LinkmanRowChangeEvent(LinkmanRow row, DataRowAction action) { eventRow = row; eventAction = action; } } [GeneratedCode("System.Data.Design.TypedDataSetGenerator", "2.0.0.0")] public class AppendInfoRowChangeEvent : EventArgs { private AppendInfoRow eventRow; private DataRowAction eventAction; [DebuggerNonUserCode] public AppendInfoRow Row => eventRow; [DebuggerNonUserCode] public DataRowAction Action => eventAction; [DebuggerNonUserCode] public AppendInfoRowChangeEvent(AppendInfoRow row, DataRowAction action) { eventRow = row; eventAction = action; } } private TelephoneDataTable tableTelephone; private PrincipalDataTable tablePrincipal; private EmployeeDataTable tableEmployee; private FaxDataTable tableFax; private SupplierDataTable tableSupplier; private LinkmanDataTable tableLinkman; private AppendInfoDataTable tableAppendInfo; private SchemaSerializationMode _schemaSerializationMode = SchemaSerializationMode.IncludeSchema; [DesignerSerializationVisibility(DesignerSerializationVisibility.Content)] [Browsable(false)] [DebuggerNonUserCode] public TelephoneDataTable Telephone => tableTelephone; [DesignerSerializationVisibility(DesignerSerializationVisibility.Content)] [DebuggerNonUserCode] [Browsable(false)] public PrincipalDataTable Principal => tablePrincipal; [DebuggerNonUserCode] [DesignerSerializationVisibility(DesignerSerializationVisibility.Content)] [Browsable(false)] public EmployeeDataTable Employee => tableEmployee; [DebuggerNonUserCode] [Browsable(false)] [DesignerSerializationVisibility(DesignerSerializationVisibility.Content)] public FaxDataTable Fax => tableFax; [DesignerSerializationVisibility(DesignerSerializationVisibility.Content)] [DebuggerNonUserCode] [Browsable(false)] public SupplierDataTable Supplier => tableSupplier; [DebuggerNonUserCode] [DesignerSerializationVisibility(DesignerSerializationVisibility.Content)] [Browsable(false)] public LinkmanDataTable Linkman => tableLinkman; [Browsable(false)] [DebuggerNonUserCode] [DesignerSerializationVisibility(DesignerSerializationVisibility.Content)] public AppendInfoDataTable AppendInfo => tableAppendInfo; [DebuggerNonUserCode] [Browsable(true)] [DesignerSerializationVisibility(DesignerSerializationVisibility.Visible)] public override SchemaSerializationMode SchemaSerializationMode { get { return _schemaSerializationMode; } set { _schemaSerializationMode = value; } } [DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)] [DebuggerNonUserCode] public new DataTableCollection Tables => base.Tables; [DebuggerNonUserCode] [DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)] public new DataRelationCollection Relations => base.Relations; [DebuggerNonUserCode] public dsFrmSupplier() { BeginInit(); InitClass(); CollectionChangeEventHandler value = SchemaChanged; base.Tables.CollectionChanged += value; base.Relations.CollectionChanged += value; EndInit(); } [DebuggerNonUserCode] protected dsFrmSupplier(SerializationInfo info, StreamingContext context) : base(info, context, ConstructSchema: false) { if (IsBinarySerialized(info, context)) { InitVars(initTable: false); CollectionChangeEventHandler value = SchemaChanged; Tables.CollectionChanged += value; Relations.CollectionChanged += value; return; } string s = (string)info.GetValue("XmlSchema", typeof(string)); if (DetermineSchemaSerializationMode(info, context) == SchemaSerializationMode.IncludeSchema) { DataSet dataSet = new DataSet(); dataSet.ReadXmlSchema(new XmlTextReader(new StringReader(s))); if (dataSet.Tables["Telephone"] != null) { base.Tables.Add(new TelephoneDataTable(dataSet.Tables["Telephone"])); } if (dataSet.Tables["Principal"] != null) { base.Tables.Add(new PrincipalDataTable(dataSet.Tables["Principal"])); } if (dataSet.Tables["Employee"] != null) { base.Tables.Add(new EmployeeDataTable(dataSet.Tables["Employee"])); } if (dataSet.Tables["Fax"] != null) { base.Tables.Add(new FaxDataTable(dataSet.Tables["Fax"])); } if (dataSet.Tables["Supplier"] != null) { base.Tables.Add(new SupplierDataTable(dataSet.Tables["Supplier"])); } if (dataSet.Tables["Linkman"] != null) { base.Tables.Add(new LinkmanDataTable(dataSet.Tables["Linkman"])); } if (dataSet.Tables["AppendInfo"] != null) { base.Tables.Add(new AppendInfoDataTable(dataSet.Tables["AppendInfo"])); } base.DataSetName = dataSet.DataSetName; base.Prefix = dataSet.Prefix; base.Namespace = dataSet.Namespace; base.Locale = dataSet.Locale; base.CaseSensitive = dataSet.CaseSensitive; base.EnforceConstraints = dataSet.EnforceConstraints; Merge(dataSet, preserveChanges: false, MissingSchemaAction.Add); InitVars(); } else { ReadXmlSchema(new XmlTextReader(new StringReader(s))); } GetSerializationData(info, context); CollectionChangeEventHandler value2 = SchemaChanged; base.Tables.CollectionChanged += value2; Relations.CollectionChanged += value2; } [DebuggerNonUserCode] protected override void InitializeDerivedDataSet() { BeginInit(); InitClass(); EndInit(); } [DebuggerNonUserCode] public override DataSet Clone() { dsFrmSupplier dsFrmSupplier = (dsFrmSupplier)base.Clone(); dsFrmSupplier.InitVars(); dsFrmSupplier.SchemaSerializationMode = SchemaSerializationMode; return dsFrmSupplier; } [DebuggerNonUserCode] protected override bool ShouldSerializeTables() { return false; } [DebuggerNonUserCode] protected override bool ShouldSerializeRelations() { return false; } [DebuggerNonUserCode] protected override void ReadXmlSerializable(XmlReader reader) { if (DetermineSchemaSerializationMode(reader) == SchemaSerializationMode.IncludeSchema) { Reset(); DataSet dataSet = new DataSet(); dataSet.ReadXml(reader); if (dataSet.Tables["Telephone"] != null) { base.Tables.Add(new TelephoneDataTable(dataSet.Tables["Telephone"])); } if (dataSet.Tables["Principal"] != null) { base.Tables.Add(new PrincipalDataTable(dataSet.Tables["Principal"])); } if (dataSet.Tables["Employee"] != null) { base.Tables.Add(new EmployeeDataTable(dataSet.Tables["Employee"])); } if (dataSet.Tables["Fax"] != null) { base.Tables.Add(new FaxDataTable(dataSet.Tables["Fax"])); } if (dataSet.Tables["Supplier"] != null) { base.Tables.Add(new SupplierDataTable(dataSet.Tables["Supplier"])); } if (dataSet.Tables["Linkman"] != null) { base.Tables.Add(new LinkmanDataTable(dataSet.Tables["Linkman"])); } if (dataSet.Tables["AppendInfo"] != null) { base.Tables.Add(new AppendInfoDataTable(dataSet.Tables["AppendInfo"])); } base.DataSetName = dataSet.DataSetName; base.Prefix = dataSet.Prefix; base.Namespace = dataSet.Namespace; base.Locale = dataSet.Locale; base.CaseSensitive = dataSet.CaseSensitive; base.EnforceConstraints = dataSet.EnforceConstraints; Merge(dataSet, preserveChanges: false, MissingSchemaAction.Add); InitVars(); } else { ReadXml(reader); InitVars(); } } [DebuggerNonUserCode] protected override XmlSchema GetSchemaSerializable() { MemoryStream memoryStream = new MemoryStream(); WriteXmlSchema(new XmlTextWriter(memoryStream, null)); memoryStream.Position = 0L; return XmlSchema.Read(new XmlTextReader(memoryStream), null); } [DebuggerNonUserCode] internal void InitVars() { InitVars(initTable: true); } [DebuggerNonUserCode] internal void InitVars(bool initTable) { tableTelephone = (TelephoneDataTable)base.Tables["Telephone"]; if (initTable && tableTelephone != null) { tableTelephone.InitVars(); } tablePrincipal = (PrincipalDataTable)base.Tables["Principal"]; if (initTable && tablePrincipal != null) { tablePrincipal.InitVars(); } tableEmployee = (EmployeeDataTable)base.Tables["Employee"]; if (initTable && tableEmployee != null) { tableEmployee.InitVars(); } tableFax = (FaxDataTable)base.Tables["Fax"]; if (initTable && tableFax != null) { tableFax.InitVars(); } tableSupplier = (SupplierDataTable)base.Tables["Supplier"]; if (initTable && tableSupplier != null) { tableSupplier.InitVars(); } tableLinkman = (LinkmanDataTable)base.Tables["Linkman"]; if (initTable && tableLinkman != null) { tableLinkman.InitVars(); } tableAppendInfo = (AppendInfoDataTable)base.Tables["AppendInfo"]; if (initTable && tableAppendInfo != null) { tableAppendInfo.InitVars(); } } [DebuggerNonUserCode] private void InitClass() { base.DataSetName = "dsFrmSupplier"; base.Prefix = ""; base.Namespace = "http://tempuri.org/dsFrmSupplier.xsd"; base.EnforceConstraints = true; SchemaSerializationMode = SchemaSerializationMode.IncludeSchema; tableTelephone = new TelephoneDataTable(); base.Tables.Add(tableTelephone); tablePrincipal = new PrincipalDataTable(); base.Tables.Add(tablePrincipal); tableEmployee = new EmployeeDataTable(); base.Tables.Add(tableEmployee); tableFax = new FaxDataTable(); base.Tables.Add(tableFax); tableSupplier = new SupplierDataTable(); base.Tables.Add(tableSupplier); tableLinkman = new LinkmanDataTable(); base.Tables.Add(tableLinkman); tableAppendInfo = new AppendInfoDataTable(); base.Tables.Add(tableAppendInfo); } [DebuggerNonUserCode] private bool ShouldSerializeTelephone() { return false; } [DebuggerNonUserCode] private bool ShouldSerializePrincipal() { return false; } [DebuggerNonUserCode] private bool ShouldSerializeEmployee() { return false; } [DebuggerNonUserCode] private bool ShouldSerializeFax() { return false; } [DebuggerNonUserCode] private bool ShouldSerializeSupplier() { return false; } [DebuggerNonUserCode] private bool ShouldSerializeLinkman() { return false; } [DebuggerNonUserCode] private bool ShouldSerializeAppendInfo() { return false; } [DebuggerNonUserCode] private void SchemaChanged(object sender, CollectionChangeEventArgs e) { if (e.Action == CollectionChangeAction.Remove) { InitVars(); } } [DebuggerNonUserCode] public static XmlSchemaComplexType GetTypedDataSetSchema(XmlSchemaSet xs) { dsFrmSupplier dsFrmSupplier = new dsFrmSupplier(); XmlSchemaComplexType xmlSchemaComplexType = new XmlSchemaComplexType(); XmlSchemaSequence xmlSchemaSequence = new XmlSchemaSequence(); xs.Add(dsFrmSupplier.GetSchemaSerializable()); XmlSchemaAny xmlSchemaAny = new XmlSchemaAny(); xmlSchemaAny.Namespace = dsFrmSupplier.Namespace; xmlSchemaSequence.Items.Add(xmlSchemaAny); xmlSchemaComplexType.Particle = xmlSchemaSequence; return xmlSchemaComplexType; } } }