//------------------------------------------------------------------------------ // // 이 코드는 도구를 사용하여 생성되었습니다. // 런타임 버전:4.0.30319.42000 // // 파일 내용을 변경하면 잘못된 동작이 발생할 수 있으며, 코드를 다시 생성하면 // 이러한 변경 내용이 손실됩니다. // //------------------------------------------------------------------------------ #pragma warning disable 1591 namespace Project { /// ///Represents a strongly typed in-memory cache of data. /// [global::System.Serializable()] [global::System.ComponentModel.DesignerCategoryAttribute("code")] [global::System.ComponentModel.ToolboxItem(true)] [global::System.Xml.Serialization.XmlSchemaProviderAttribute("GetTypedDataSetSchema")] [global::System.Xml.Serialization.XmlRootAttribute("dsProjects")] [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.DataSet")] public partial class dsProjects : global::System.Data.DataSet { private ProjectsDataTable tableProjects; private EETGW_ProjectsScheduleDataTable tableEETGW_ProjectsSchedule; private ProjectsPartDataTable tableProjectsPart; private global::System.Data.SchemaSerializationMode _schemaSerializationMode = global::System.Data.SchemaSerializationMode.IncludeSchema; [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public dsProjects() { this.BeginInit(); this.InitClass(); global::System.ComponentModel.CollectionChangeEventHandler schemaChangedHandler = new global::System.ComponentModel.CollectionChangeEventHandler(this.SchemaChanged); base.Tables.CollectionChanged += schemaChangedHandler; base.Relations.CollectionChanged += schemaChangedHandler; this.EndInit(); } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] protected dsProjects(global::System.Runtime.Serialization.SerializationInfo info, global::System.Runtime.Serialization.StreamingContext context) : base(info, context, false) { if ((this.IsBinarySerialized(info, context) == true)) { this.InitVars(false); global::System.ComponentModel.CollectionChangeEventHandler schemaChangedHandler1 = new global::System.ComponentModel.CollectionChangeEventHandler(this.SchemaChanged); this.Tables.CollectionChanged += schemaChangedHandler1; this.Relations.CollectionChanged += schemaChangedHandler1; return; } string strSchema = ((string)(info.GetValue("XmlSchema", typeof(string)))); if ((this.DetermineSchemaSerializationMode(info, context) == global::System.Data.SchemaSerializationMode.IncludeSchema)) { global::System.Data.DataSet ds = new global::System.Data.DataSet(); ds.ReadXmlSchema(new global::System.Xml.XmlTextReader(new global::System.IO.StringReader(strSchema))); if ((ds.Tables["Projects"] != null)) { base.Tables.Add(new ProjectsDataTable(ds.Tables["Projects"])); } if ((ds.Tables["EETGW_ProjectsSchedule"] != null)) { base.Tables.Add(new EETGW_ProjectsScheduleDataTable(ds.Tables["EETGW_ProjectsSchedule"])); } if ((ds.Tables["ProjectsPart"] != null)) { base.Tables.Add(new ProjectsPartDataTable(ds.Tables["ProjectsPart"])); } this.DataSetName = ds.DataSetName; this.Prefix = ds.Prefix; this.Namespace = ds.Namespace; this.Locale = ds.Locale; this.CaseSensitive = ds.CaseSensitive; this.EnforceConstraints = ds.EnforceConstraints; this.Merge(ds, false, global::System.Data.MissingSchemaAction.Add); this.InitVars(); } else { this.ReadXmlSchema(new global::System.Xml.XmlTextReader(new global::System.IO.StringReader(strSchema))); } this.GetSerializationData(info, context); global::System.ComponentModel.CollectionChangeEventHandler schemaChangedHandler = new global::System.ComponentModel.CollectionChangeEventHandler(this.SchemaChanged); base.Tables.CollectionChanged += schemaChangedHandler; this.Relations.CollectionChanged += schemaChangedHandler; } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] [global::System.ComponentModel.Browsable(false)] [global::System.ComponentModel.DesignerSerializationVisibility(global::System.ComponentModel.DesignerSerializationVisibility.Content)] public ProjectsDataTable Projects { get { return this.tableProjects; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] [global::System.ComponentModel.Browsable(false)] [global::System.ComponentModel.DesignerSerializationVisibility(global::System.ComponentModel.DesignerSerializationVisibility.Content)] public EETGW_ProjectsScheduleDataTable EETGW_ProjectsSchedule { get { return this.tableEETGW_ProjectsSchedule; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] [global::System.ComponentModel.Browsable(false)] [global::System.ComponentModel.DesignerSerializationVisibility(global::System.ComponentModel.DesignerSerializationVisibility.Content)] public ProjectsPartDataTable ProjectsPart { get { return this.tableProjectsPart; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] [global::System.ComponentModel.BrowsableAttribute(true)] [global::System.ComponentModel.DesignerSerializationVisibilityAttribute(global::System.ComponentModel.DesignerSerializationVisibility.Visible)] public override global::System.Data.SchemaSerializationMode SchemaSerializationMode { get { return this._schemaSerializationMode; } set { this._schemaSerializationMode = value; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] [global::System.ComponentModel.DesignerSerializationVisibilityAttribute(global::System.ComponentModel.DesignerSerializationVisibility.Hidden)] public new global::System.Data.DataTableCollection Tables { get { return base.Tables; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] [global::System.ComponentModel.DesignerSerializationVisibilityAttribute(global::System.ComponentModel.DesignerSerializationVisibility.Hidden)] public new global::System.Data.DataRelationCollection Relations { get { return base.Relations; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] protected override void InitializeDerivedDataSet() { this.BeginInit(); this.InitClass(); this.EndInit(); } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public override global::System.Data.DataSet Clone() { dsProjects cln = ((dsProjects)(base.Clone())); cln.InitVars(); cln.SchemaSerializationMode = this.SchemaSerializationMode; return cln; } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] protected override bool ShouldSerializeTables() { return false; } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] protected override bool ShouldSerializeRelations() { return false; } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] protected override void ReadXmlSerializable(global::System.Xml.XmlReader reader) { if ((this.DetermineSchemaSerializationMode(reader) == global::System.Data.SchemaSerializationMode.IncludeSchema)) { this.Reset(); global::System.Data.DataSet ds = new global::System.Data.DataSet(); ds.ReadXml(reader); if ((ds.Tables["Projects"] != null)) { base.Tables.Add(new ProjectsDataTable(ds.Tables["Projects"])); } if ((ds.Tables["EETGW_ProjectsSchedule"] != null)) { base.Tables.Add(new EETGW_ProjectsScheduleDataTable(ds.Tables["EETGW_ProjectsSchedule"])); } if ((ds.Tables["ProjectsPart"] != null)) { base.Tables.Add(new ProjectsPartDataTable(ds.Tables["ProjectsPart"])); } this.DataSetName = ds.DataSetName; this.Prefix = ds.Prefix; this.Namespace = ds.Namespace; this.Locale = ds.Locale; this.CaseSensitive = ds.CaseSensitive; this.EnforceConstraints = ds.EnforceConstraints; this.Merge(ds, false, global::System.Data.MissingSchemaAction.Add); this.InitVars(); } else { this.ReadXml(reader); this.InitVars(); } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] protected override global::System.Xml.Schema.XmlSchema GetSchemaSerializable() { global::System.IO.MemoryStream stream = new global::System.IO.MemoryStream(); this.WriteXmlSchema(new global::System.Xml.XmlTextWriter(stream, null)); stream.Position = 0; return global::System.Xml.Schema.XmlSchema.Read(new global::System.Xml.XmlTextReader(stream), null); } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] internal void InitVars() { this.InitVars(true); } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] internal void InitVars(bool initTable) { this.tableProjects = ((ProjectsDataTable)(base.Tables["Projects"])); if ((initTable == true)) { if ((this.tableProjects != null)) { this.tableProjects.InitVars(); } } this.tableEETGW_ProjectsSchedule = ((EETGW_ProjectsScheduleDataTable)(base.Tables["EETGW_ProjectsSchedule"])); if ((initTable == true)) { if ((this.tableEETGW_ProjectsSchedule != null)) { this.tableEETGW_ProjectsSchedule.InitVars(); } } this.tableProjectsPart = ((ProjectsPartDataTable)(base.Tables["ProjectsPart"])); if ((initTable == true)) { if ((this.tableProjectsPart != null)) { this.tableProjectsPart.InitVars(); } } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] private void InitClass() { this.DataSetName = "dsProjects"; this.Prefix = ""; this.Namespace = "http://tempuri.org/dsProjects.xsd"; this.EnforceConstraints = true; this.SchemaSerializationMode = global::System.Data.SchemaSerializationMode.IncludeSchema; this.tableProjects = new ProjectsDataTable(); base.Tables.Add(this.tableProjects); this.tableEETGW_ProjectsSchedule = new EETGW_ProjectsScheduleDataTable(); base.Tables.Add(this.tableEETGW_ProjectsSchedule); this.tableProjectsPart = new ProjectsPartDataTable(); base.Tables.Add(this.tableProjectsPart); } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] private bool ShouldSerializeProjects() { return false; } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] private bool ShouldSerializeEETGW_ProjectsSchedule() { return false; } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] private bool ShouldSerializeProjectsPart() { return false; } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] private void SchemaChanged(object sender, global::System.ComponentModel.CollectionChangeEventArgs e) { if ((e.Action == global::System.ComponentModel.CollectionChangeAction.Remove)) { this.InitVars(); } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public static global::System.Xml.Schema.XmlSchemaComplexType GetTypedDataSetSchema(global::System.Xml.Schema.XmlSchemaSet xs) { dsProjects ds = new dsProjects(); global::System.Xml.Schema.XmlSchemaComplexType type = new global::System.Xml.Schema.XmlSchemaComplexType(); global::System.Xml.Schema.XmlSchemaSequence sequence = new global::System.Xml.Schema.XmlSchemaSequence(); global::System.Xml.Schema.XmlSchemaAny any = new global::System.Xml.Schema.XmlSchemaAny(); any.Namespace = ds.Namespace; sequence.Items.Add(any); type.Particle = sequence; global::System.Xml.Schema.XmlSchema dsSchema = ds.GetSchemaSerializable(); if (xs.Contains(dsSchema.TargetNamespace)) { global::System.IO.MemoryStream s1 = new global::System.IO.MemoryStream(); global::System.IO.MemoryStream s2 = new global::System.IO.MemoryStream(); try { global::System.Xml.Schema.XmlSchema schema = null; dsSchema.Write(s1); for (global::System.Collections.IEnumerator schemas = xs.Schemas(dsSchema.TargetNamespace).GetEnumerator(); schemas.MoveNext(); ) { schema = ((global::System.Xml.Schema.XmlSchema)(schemas.Current)); s2.SetLength(0); schema.Write(s2); if ((s1.Length == s2.Length)) { s1.Position = 0; s2.Position = 0; for (; ((s1.Position != s1.Length) && (s1.ReadByte() == s2.ReadByte())); ) { ; } if ((s1.Position == s1.Length)) { return type; } } } } finally { if ((s1 != null)) { s1.Close(); } if ((s2 != null)) { s2.Close(); } } } xs.Add(dsSchema); return type; } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public delegate void ProjectsRowChangeEventHandler(object sender, ProjectsRowChangeEvent e); [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public delegate void EETGW_ProjectsScheduleRowChangeEventHandler(object sender, EETGW_ProjectsScheduleRowChangeEvent e); [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public delegate void ProjectsPartRowChangeEventHandler(object sender, ProjectsPartRowChangeEvent e); /// ///Represents the strongly named DataTable class. /// [global::System.Serializable()] [global::System.Xml.Serialization.XmlSchemaProviderAttribute("GetTypedTableSchema")] public partial class ProjectsDataTable : global::System.Data.TypedTableBase { private global::System.Data.DataColumn columnidx; private global::System.Data.DataColumn columnpidx; private global::System.Data.DataColumn columngcode; private global::System.Data.DataColumn columnisdel; private global::System.Data.DataColumn columncategory; private global::System.Data.DataColumn columnstatus; private global::System.Data.DataColumn columnasset; private global::System.Data.DataColumn columnlevel; private global::System.Data.DataColumn columnrev; private global::System.Data.DataColumn columnprocess; private global::System.Data.DataColumn columnpart; private global::System.Data.DataColumn columnpdate; private global::System.Data.DataColumn columnname; private global::System.Data.DataColumn columnuserManager; private global::System.Data.DataColumn columnusermain; private global::System.Data.DataColumn columnusersub; private global::System.Data.DataColumn columnuserhw2; private global::System.Data.DataColumn columnreqstaff; private global::System.Data.DataColumn columncosto; private global::System.Data.DataColumn columncostn; private global::System.Data.DataColumn columncnt; private global::System.Data.DataColumn columnremark_req; private global::System.Data.DataColumn columnremark_ans; private global::System.Data.DataColumn columnsdate; private global::System.Data.DataColumn columnddate; private global::System.Data.DataColumn columnedate; private global::System.Data.DataColumn columnodate; private global::System.Data.DataColumn columnbdate; private global::System.Data.DataColumn columnqdate; private global::System.Data.DataColumn columncdate; private global::System.Data.DataColumn columnprogress; private global::System.Data.DataColumn columnmemo; private global::System.Data.DataColumn columnwuid; private global::System.Data.DataColumn columnwdate; private global::System.Data.DataColumn columnorderno; private global::System.Data.DataColumn columncrdue; private global::System.Data.DataColumn columnimport; private global::System.Data.DataColumn columnpath; private global::System.Data.DataColumn columnuserprocess; private global::System.Data.DataColumn columnCMP_Background; private global::System.Data.DataColumn columnCMP_Description; private global::System.Data.DataColumn columnCMP_Before; private global::System.Data.DataColumn columnCMP_After; private global::System.Data.DataColumn columnCMP_After2; private global::System.Data.DataColumn columnbCost; private global::System.Data.DataColumn columnbFanOut; private global::System.Data.DataColumn columndiv; private global::System.Data.DataColumn columnmodel; private global::System.Data.DataColumn columnserial; private global::System.Data.DataColumn columnEB_Site; private global::System.Data.DataColumn columnEB_Line; private global::System.Data.DataColumn columnEB_Team; private global::System.Data.DataColumn columnEB_Model; private global::System.Data.DataColumn columnEB_OutSourceName; private global::System.Data.DataColumn columnEB_RepairTime; private global::System.Data.DataColumn columnEB_ConstNew; private global::System.Data.DataColumn columnEB_BoardName; private global::System.Data.DataColumn columnbAlert; private global::System.Data.DataColumn columnchampionid; private global::System.Data.DataColumn columndesignid; private global::System.Data.DataColumn columnassemblyid; private global::System.Data.DataColumn columnepanelid; private global::System.Data.DataColumn columnsoftwareid; private global::System.Data.DataColumn columnuserAssembly; private global::System.Data.DataColumn columnReqLine; private global::System.Data.DataColumn columnReqSite; private global::System.Data.DataColumn columnReqPackage; private global::System.Data.DataColumn columnReqPlant; private global::System.Data.DataColumn columnpno; private global::System.Data.DataColumn columnkdate; private global::System.Data.DataColumn columnjasmin; private global::System.Data.DataColumn columnsfi; private global::System.Data.DataColumn columnsfi_type; private global::System.Data.DataColumn columnsfi_savetime; private global::System.Data.DataColumn columnsfi_savecount; private global::System.Data.DataColumn columnsfi_shiftcount; private global::System.Data.DataColumn columnsfic; private global::System.Data.DataColumn columnbHighlight; private global::System.Data.DataColumn columneffect_tangible; private global::System.Data.DataColumn columneffect_intangible; private global::System.Data.DataColumn columnbmajoritem; private global::System.Data.DataColumn columncramount; [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public ProjectsDataTable() { this.TableName = "Projects"; this.BeginInit(); this.InitClass(); this.EndInit(); } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] internal ProjectsDataTable(global::System.Data.DataTable table) { this.TableName = table.TableName; if ((table.CaseSensitive != table.DataSet.CaseSensitive)) { this.CaseSensitive = table.CaseSensitive; } if ((table.Locale.ToString() != table.DataSet.Locale.ToString())) { this.Locale = table.Locale; } if ((table.Namespace != table.DataSet.Namespace)) { this.Namespace = table.Namespace; } this.Prefix = table.Prefix; this.MinimumCapacity = table.MinimumCapacity; } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] protected ProjectsDataTable(global::System.Runtime.Serialization.SerializationInfo info, global::System.Runtime.Serialization.StreamingContext context) : base(info, context) { this.InitVars(); } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public global::System.Data.DataColumn idxColumn { get { return this.columnidx; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public global::System.Data.DataColumn pidxColumn { get { return this.columnpidx; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public global::System.Data.DataColumn gcodeColumn { get { return this.columngcode; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public global::System.Data.DataColumn isdelColumn { get { return this.columnisdel; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public global::System.Data.DataColumn categoryColumn { get { return this.columncategory; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public global::System.Data.DataColumn statusColumn { get { return this.columnstatus; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public global::System.Data.DataColumn assetColumn { get { return this.columnasset; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public global::System.Data.DataColumn levelColumn { get { return this.columnlevel; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public global::System.Data.DataColumn revColumn { get { return this.columnrev; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public global::System.Data.DataColumn processColumn { get { return this.columnprocess; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public global::System.Data.DataColumn partColumn { get { return this.columnpart; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public global::System.Data.DataColumn pdateColumn { get { return this.columnpdate; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public global::System.Data.DataColumn nameColumn { get { return this.columnname; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public global::System.Data.DataColumn userManagerColumn { get { return this.columnuserManager; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public global::System.Data.DataColumn usermainColumn { get { return this.columnusermain; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public global::System.Data.DataColumn usersubColumn { get { return this.columnusersub; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public global::System.Data.DataColumn userhw2Column { get { return this.columnuserhw2; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public global::System.Data.DataColumn reqstaffColumn { get { return this.columnreqstaff; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public global::System.Data.DataColumn costoColumn { get { return this.columncosto; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public global::System.Data.DataColumn costnColumn { get { return this.columncostn; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public global::System.Data.DataColumn cntColumn { get { return this.columncnt; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public global::System.Data.DataColumn remark_reqColumn { get { return this.columnremark_req; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public global::System.Data.DataColumn remark_ansColumn { get { return this.columnremark_ans; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public global::System.Data.DataColumn sdateColumn { get { return this.columnsdate; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public global::System.Data.DataColumn ddateColumn { get { return this.columnddate; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public global::System.Data.DataColumn edateColumn { get { return this.columnedate; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public global::System.Data.DataColumn odateColumn { get { return this.columnodate; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public global::System.Data.DataColumn bdateColumn { get { return this.columnbdate; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public global::System.Data.DataColumn qdateColumn { get { return this.columnqdate; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public global::System.Data.DataColumn cdateColumn { get { return this.columncdate; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public global::System.Data.DataColumn progressColumn { get { return this.columnprogress; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public global::System.Data.DataColumn memoColumn { get { return this.columnmemo; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public global::System.Data.DataColumn wuidColumn { get { return this.columnwuid; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public global::System.Data.DataColumn wdateColumn { get { return this.columnwdate; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public global::System.Data.DataColumn ordernoColumn { get { return this.columnorderno; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public global::System.Data.DataColumn crdueColumn { get { return this.columncrdue; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public global::System.Data.DataColumn importColumn { get { return this.columnimport; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public global::System.Data.DataColumn pathColumn { get { return this.columnpath; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public global::System.Data.DataColumn userprocessColumn { get { return this.columnuserprocess; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public global::System.Data.DataColumn CMP_BackgroundColumn { get { return this.columnCMP_Background; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public global::System.Data.DataColumn CMP_DescriptionColumn { get { return this.columnCMP_Description; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public global::System.Data.DataColumn CMP_BeforeColumn { get { return this.columnCMP_Before; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public global::System.Data.DataColumn CMP_AfterColumn { get { return this.columnCMP_After; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public global::System.Data.DataColumn CMP_After2Column { get { return this.columnCMP_After2; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public global::System.Data.DataColumn bCostColumn { get { return this.columnbCost; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public global::System.Data.DataColumn bFanOutColumn { get { return this.columnbFanOut; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public global::System.Data.DataColumn divColumn { get { return this.columndiv; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public global::System.Data.DataColumn modelColumn { get { return this.columnmodel; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public global::System.Data.DataColumn serialColumn { get { return this.columnserial; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public global::System.Data.DataColumn EB_SiteColumn { get { return this.columnEB_Site; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public global::System.Data.DataColumn EB_LineColumn { get { return this.columnEB_Line; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public global::System.Data.DataColumn EB_TeamColumn { get { return this.columnEB_Team; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public global::System.Data.DataColumn EB_ModelColumn { get { return this.columnEB_Model; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public global::System.Data.DataColumn EB_OutSourceNameColumn { get { return this.columnEB_OutSourceName; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public global::System.Data.DataColumn EB_RepairTimeColumn { get { return this.columnEB_RepairTime; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public global::System.Data.DataColumn EB_ConstNewColumn { get { return this.columnEB_ConstNew; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public global::System.Data.DataColumn EB_BoardNameColumn { get { return this.columnEB_BoardName; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public global::System.Data.DataColumn bAlertColumn { get { return this.columnbAlert; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public global::System.Data.DataColumn championidColumn { get { return this.columnchampionid; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public global::System.Data.DataColumn designidColumn { get { return this.columndesignid; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public global::System.Data.DataColumn assemblyidColumn { get { return this.columnassemblyid; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public global::System.Data.DataColumn epanelidColumn { get { return this.columnepanelid; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public global::System.Data.DataColumn softwareidColumn { get { return this.columnsoftwareid; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public global::System.Data.DataColumn userAssemblyColumn { get { return this.columnuserAssembly; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public global::System.Data.DataColumn ReqLineColumn { get { return this.columnReqLine; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public global::System.Data.DataColumn ReqSiteColumn { get { return this.columnReqSite; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public global::System.Data.DataColumn ReqPackageColumn { get { return this.columnReqPackage; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public global::System.Data.DataColumn ReqPlantColumn { get { return this.columnReqPlant; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public global::System.Data.DataColumn pnoColumn { get { return this.columnpno; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public global::System.Data.DataColumn kdateColumn { get { return this.columnkdate; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public global::System.Data.DataColumn jasminColumn { get { return this.columnjasmin; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public global::System.Data.DataColumn sfiColumn { get { return this.columnsfi; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public global::System.Data.DataColumn sfi_typeColumn { get { return this.columnsfi_type; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public global::System.Data.DataColumn sfi_savetimeColumn { get { return this.columnsfi_savetime; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public global::System.Data.DataColumn sfi_savecountColumn { get { return this.columnsfi_savecount; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public global::System.Data.DataColumn sfi_shiftcountColumn { get { return this.columnsfi_shiftcount; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public global::System.Data.DataColumn sficColumn { get { return this.columnsfic; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public global::System.Data.DataColumn bHighlightColumn { get { return this.columnbHighlight; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public global::System.Data.DataColumn effect_tangibleColumn { get { return this.columneffect_tangible; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public global::System.Data.DataColumn effect_intangibleColumn { get { return this.columneffect_intangible; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public global::System.Data.DataColumn bmajoritemColumn { get { return this.columnbmajoritem; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public global::System.Data.DataColumn cramountColumn { get { return this.columncramount; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] [global::System.ComponentModel.Browsable(false)] public int Count { get { return this.Rows.Count; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public ProjectsRow this[int index] { get { return ((ProjectsRow)(this.Rows[index])); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public event ProjectsRowChangeEventHandler ProjectsRowChanging; [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public event ProjectsRowChangeEventHandler ProjectsRowChanged; [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public event ProjectsRowChangeEventHandler ProjectsRowDeleting; [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public event ProjectsRowChangeEventHandler ProjectsRowDeleted; [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public void AddProjectsRow(ProjectsRow row) { this.Rows.Add(row); } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public ProjectsRow AddProjectsRow( int pidx, string gcode, bool isdel, string category, string status, string asset, int level, int rev, string process, string part, string pdate, string name, string userManager, string usermain, string usersub, string userhw2, string reqstaff, double costo, double costn, int cnt, string remark_req, string remark_ans, string sdate, string ddate, string edate, string odate, string bdate, string qdate, string cdate, int progress, string memo, string wuid, System.DateTime wdate, string orderno, string crdue, bool import, string path, string userprocess, string CMP_Background, string CMP_Description, string CMP_Before, string CMP_After, string CMP_After2, bool bCost, bool bFanOut, string div, string model, string serial, string EB_Site, string EB_Line, string EB_Team, string EB_Model, string EB_OutSourceName, double EB_RepairTime, double EB_ConstNew, string EB_BoardName, bool bAlert, string championid, string designid, string assemblyid, string epanelid, string softwareid, string userAssembly, string ReqLine, string ReqSite, string ReqPackage, string ReqPlant, int pno, string kdate, int jasmin, double sfi, string sfi_type, double sfi_savetime, double sfi_savecount, double sfi_shiftcount, double sfic, bool bHighlight, string effect_tangible, string effect_intangible, bool bmajoritem, decimal cramount) { ProjectsRow rowProjectsRow = ((ProjectsRow)(this.NewRow())); object[] columnValuesArray = new object[] { null, pidx, gcode, isdel, category, status, asset, level, rev, process, part, pdate, name, userManager, usermain, usersub, userhw2, reqstaff, costo, costn, cnt, remark_req, remark_ans, sdate, ddate, edate, odate, bdate, qdate, cdate, progress, memo, wuid, wdate, orderno, crdue, import, path, userprocess, CMP_Background, CMP_Description, CMP_Before, CMP_After, CMP_After2, bCost, bFanOut, div, model, serial, EB_Site, EB_Line, EB_Team, EB_Model, EB_OutSourceName, EB_RepairTime, EB_ConstNew, EB_BoardName, bAlert, championid, designid, assemblyid, epanelid, softwareid, userAssembly, ReqLine, ReqSite, ReqPackage, ReqPlant, pno, kdate, jasmin, sfi, sfi_type, sfi_savetime, sfi_savecount, sfi_shiftcount, sfic, bHighlight, effect_tangible, effect_intangible, bmajoritem, cramount}; rowProjectsRow.ItemArray = columnValuesArray; this.Rows.Add(rowProjectsRow); return rowProjectsRow; } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public ProjectsRow FindByidx(int idx) { return ((ProjectsRow)(this.Rows.Find(new object[] { idx}))); } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public override global::System.Data.DataTable Clone() { ProjectsDataTable cln = ((ProjectsDataTable)(base.Clone())); cln.InitVars(); return cln; } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] protected override global::System.Data.DataTable CreateInstance() { return new ProjectsDataTable(); } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] internal void InitVars() { this.columnidx = base.Columns["idx"]; this.columnpidx = base.Columns["pidx"]; this.columngcode = base.Columns["gcode"]; this.columnisdel = base.Columns["isdel"]; this.columncategory = base.Columns["category"]; this.columnstatus = base.Columns["status"]; this.columnasset = base.Columns["asset"]; this.columnlevel = base.Columns["level"]; this.columnrev = base.Columns["rev"]; this.columnprocess = base.Columns["process"]; this.columnpart = base.Columns["part"]; this.columnpdate = base.Columns["pdate"]; this.columnname = base.Columns["name"]; this.columnuserManager = base.Columns["userManager"]; this.columnusermain = base.Columns["usermain"]; this.columnusersub = base.Columns["usersub"]; this.columnuserhw2 = base.Columns["userhw2"]; this.columnreqstaff = base.Columns["reqstaff"]; this.columncosto = base.Columns["costo"]; this.columncostn = base.Columns["costn"]; this.columncnt = base.Columns["cnt"]; this.columnremark_req = base.Columns["remark_req"]; this.columnremark_ans = base.Columns["remark_ans"]; this.columnsdate = base.Columns["sdate"]; this.columnddate = base.Columns["ddate"]; this.columnedate = base.Columns["edate"]; this.columnodate = base.Columns["odate"]; this.columnbdate = base.Columns["bdate"]; this.columnqdate = base.Columns["qdate"]; this.columncdate = base.Columns["cdate"]; this.columnprogress = base.Columns["progress"]; this.columnmemo = base.Columns["memo"]; this.columnwuid = base.Columns["wuid"]; this.columnwdate = base.Columns["wdate"]; this.columnorderno = base.Columns["orderno"]; this.columncrdue = base.Columns["crdue"]; this.columnimport = base.Columns["import"]; this.columnpath = base.Columns["path"]; this.columnuserprocess = base.Columns["userprocess"]; this.columnCMP_Background = base.Columns["CMP_Background"]; this.columnCMP_Description = base.Columns["CMP_Description"]; this.columnCMP_Before = base.Columns["CMP_Before"]; this.columnCMP_After = base.Columns["CMP_After"]; this.columnCMP_After2 = base.Columns["CMP_After2"]; this.columnbCost = base.Columns["bCost"]; this.columnbFanOut = base.Columns["bFanOut"]; this.columndiv = base.Columns["div"]; this.columnmodel = base.Columns["model"]; this.columnserial = base.Columns["serial"]; this.columnEB_Site = base.Columns["EB_Site"]; this.columnEB_Line = base.Columns["EB_Line"]; this.columnEB_Team = base.Columns["EB_Team"]; this.columnEB_Model = base.Columns["EB_Model"]; this.columnEB_OutSourceName = base.Columns["EB_OutSourceName"]; this.columnEB_RepairTime = base.Columns["EB_RepairTime"]; this.columnEB_ConstNew = base.Columns["EB_ConstNew"]; this.columnEB_BoardName = base.Columns["EB_BoardName"]; this.columnbAlert = base.Columns["bAlert"]; this.columnchampionid = base.Columns["championid"]; this.columndesignid = base.Columns["designid"]; this.columnassemblyid = base.Columns["assemblyid"]; this.columnepanelid = base.Columns["epanelid"]; this.columnsoftwareid = base.Columns["softwareid"]; this.columnuserAssembly = base.Columns["userAssembly"]; this.columnReqLine = base.Columns["ReqLine"]; this.columnReqSite = base.Columns["ReqSite"]; this.columnReqPackage = base.Columns["ReqPackage"]; this.columnReqPlant = base.Columns["ReqPlant"]; this.columnpno = base.Columns["pno"]; this.columnkdate = base.Columns["kdate"]; this.columnjasmin = base.Columns["jasmin"]; this.columnsfi = base.Columns["sfi"]; this.columnsfi_type = base.Columns["sfi_type"]; this.columnsfi_savetime = base.Columns["sfi_savetime"]; this.columnsfi_savecount = base.Columns["sfi_savecount"]; this.columnsfi_shiftcount = base.Columns["sfi_shiftcount"]; this.columnsfic = base.Columns["sfic"]; this.columnbHighlight = base.Columns["bHighlight"]; this.columneffect_tangible = base.Columns["effect_tangible"]; this.columneffect_intangible = base.Columns["effect_intangible"]; this.columnbmajoritem = base.Columns["bmajoritem"]; this.columncramount = base.Columns["cramount"]; } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] private void InitClass() { this.columnidx = new global::System.Data.DataColumn("idx", typeof(int), null, global::System.Data.MappingType.Element); base.Columns.Add(this.columnidx); this.columnpidx = new global::System.Data.DataColumn("pidx", typeof(int), null, global::System.Data.MappingType.Element); base.Columns.Add(this.columnpidx); this.columngcode = new global::System.Data.DataColumn("gcode", typeof(string), null, global::System.Data.MappingType.Element); base.Columns.Add(this.columngcode); this.columnisdel = new global::System.Data.DataColumn("isdel", typeof(bool), null, global::System.Data.MappingType.Element); base.Columns.Add(this.columnisdel); this.columncategory = new global::System.Data.DataColumn("category", typeof(string), null, global::System.Data.MappingType.Element); base.Columns.Add(this.columncategory); this.columnstatus = new global::System.Data.DataColumn("status", typeof(string), null, global::System.Data.MappingType.Element); base.Columns.Add(this.columnstatus); this.columnasset = new global::System.Data.DataColumn("asset", typeof(string), null, global::System.Data.MappingType.Element); base.Columns.Add(this.columnasset); this.columnlevel = new global::System.Data.DataColumn("level", typeof(int), null, global::System.Data.MappingType.Element); base.Columns.Add(this.columnlevel); this.columnrev = new global::System.Data.DataColumn("rev", typeof(int), null, global::System.Data.MappingType.Element); base.Columns.Add(this.columnrev); this.columnprocess = new global::System.Data.DataColumn("process", typeof(string), null, global::System.Data.MappingType.Element); base.Columns.Add(this.columnprocess); this.columnpart = new global::System.Data.DataColumn("part", typeof(string), null, global::System.Data.MappingType.Element); base.Columns.Add(this.columnpart); this.columnpdate = new global::System.Data.DataColumn("pdate", typeof(string), null, global::System.Data.MappingType.Element); base.Columns.Add(this.columnpdate); this.columnname = new global::System.Data.DataColumn("name", typeof(string), null, global::System.Data.MappingType.Element); base.Columns.Add(this.columnname); this.columnuserManager = new global::System.Data.DataColumn("userManager", typeof(string), null, global::System.Data.MappingType.Element); base.Columns.Add(this.columnuserManager); this.columnusermain = new global::System.Data.DataColumn("usermain", typeof(string), null, global::System.Data.MappingType.Element); base.Columns.Add(this.columnusermain); this.columnusersub = new global::System.Data.DataColumn("usersub", typeof(string), null, global::System.Data.MappingType.Element); base.Columns.Add(this.columnusersub); this.columnuserhw2 = new global::System.Data.DataColumn("userhw2", typeof(string), null, global::System.Data.MappingType.Element); base.Columns.Add(this.columnuserhw2); this.columnreqstaff = new global::System.Data.DataColumn("reqstaff", typeof(string), null, global::System.Data.MappingType.Element); base.Columns.Add(this.columnreqstaff); this.columncosto = new global::System.Data.DataColumn("costo", typeof(double), null, global::System.Data.MappingType.Element); base.Columns.Add(this.columncosto); this.columncostn = new global::System.Data.DataColumn("costn", typeof(double), null, global::System.Data.MappingType.Element); base.Columns.Add(this.columncostn); this.columncnt = new global::System.Data.DataColumn("cnt", typeof(int), null, global::System.Data.MappingType.Element); base.Columns.Add(this.columncnt); this.columnremark_req = new global::System.Data.DataColumn("remark_req", typeof(string), null, global::System.Data.MappingType.Element); base.Columns.Add(this.columnremark_req); this.columnremark_ans = new global::System.Data.DataColumn("remark_ans", typeof(string), null, global::System.Data.MappingType.Element); base.Columns.Add(this.columnremark_ans); this.columnsdate = new global::System.Data.DataColumn("sdate", typeof(string), null, global::System.Data.MappingType.Element); base.Columns.Add(this.columnsdate); this.columnddate = new global::System.Data.DataColumn("ddate", typeof(string), null, global::System.Data.MappingType.Element); base.Columns.Add(this.columnddate); this.columnedate = new global::System.Data.DataColumn("edate", typeof(string), null, global::System.Data.MappingType.Element); base.Columns.Add(this.columnedate); this.columnodate = new global::System.Data.DataColumn("odate", typeof(string), null, global::System.Data.MappingType.Element); base.Columns.Add(this.columnodate); this.columnbdate = new global::System.Data.DataColumn("bdate", typeof(string), null, global::System.Data.MappingType.Element); base.Columns.Add(this.columnbdate); this.columnqdate = new global::System.Data.DataColumn("qdate", typeof(string), null, global::System.Data.MappingType.Element); base.Columns.Add(this.columnqdate); this.columncdate = new global::System.Data.DataColumn("cdate", typeof(string), null, global::System.Data.MappingType.Element); base.Columns.Add(this.columncdate); this.columnprogress = new global::System.Data.DataColumn("progress", typeof(int), null, global::System.Data.MappingType.Element); base.Columns.Add(this.columnprogress); this.columnmemo = new global::System.Data.DataColumn("memo", typeof(string), null, global::System.Data.MappingType.Element); base.Columns.Add(this.columnmemo); this.columnwuid = new global::System.Data.DataColumn("wuid", typeof(string), null, global::System.Data.MappingType.Element); base.Columns.Add(this.columnwuid); this.columnwdate = new global::System.Data.DataColumn("wdate", typeof(global::System.DateTime), null, global::System.Data.MappingType.Element); base.Columns.Add(this.columnwdate); this.columnorderno = new global::System.Data.DataColumn("orderno", typeof(string), null, global::System.Data.MappingType.Element); base.Columns.Add(this.columnorderno); this.columncrdue = new global::System.Data.DataColumn("crdue", typeof(string), null, global::System.Data.MappingType.Element); base.Columns.Add(this.columncrdue); this.columnimport = new global::System.Data.DataColumn("import", typeof(bool), null, global::System.Data.MappingType.Element); base.Columns.Add(this.columnimport); this.columnpath = new global::System.Data.DataColumn("path", typeof(string), null, global::System.Data.MappingType.Element); base.Columns.Add(this.columnpath); this.columnuserprocess = new global::System.Data.DataColumn("userprocess", typeof(string), null, global::System.Data.MappingType.Element); base.Columns.Add(this.columnuserprocess); this.columnCMP_Background = new global::System.Data.DataColumn("CMP_Background", typeof(string), null, global::System.Data.MappingType.Element); base.Columns.Add(this.columnCMP_Background); this.columnCMP_Description = new global::System.Data.DataColumn("CMP_Description", typeof(string), null, global::System.Data.MappingType.Element); base.Columns.Add(this.columnCMP_Description); this.columnCMP_Before = new global::System.Data.DataColumn("CMP_Before", typeof(string), null, global::System.Data.MappingType.Element); base.Columns.Add(this.columnCMP_Before); this.columnCMP_After = new global::System.Data.DataColumn("CMP_After", typeof(string), null, global::System.Data.MappingType.Element); base.Columns.Add(this.columnCMP_After); this.columnCMP_After2 = new global::System.Data.DataColumn("CMP_After2", typeof(string), null, global::System.Data.MappingType.Element); base.Columns.Add(this.columnCMP_After2); this.columnbCost = new global::System.Data.DataColumn("bCost", typeof(bool), null, global::System.Data.MappingType.Element); base.Columns.Add(this.columnbCost); this.columnbFanOut = new global::System.Data.DataColumn("bFanOut", typeof(bool), null, global::System.Data.MappingType.Element); base.Columns.Add(this.columnbFanOut); this.columndiv = new global::System.Data.DataColumn("div", typeof(string), null, global::System.Data.MappingType.Element); base.Columns.Add(this.columndiv); this.columnmodel = new global::System.Data.DataColumn("model", typeof(string), null, global::System.Data.MappingType.Element); base.Columns.Add(this.columnmodel); this.columnserial = new global::System.Data.DataColumn("serial", typeof(string), null, global::System.Data.MappingType.Element); base.Columns.Add(this.columnserial); this.columnEB_Site = new global::System.Data.DataColumn("EB_Site", typeof(string), null, global::System.Data.MappingType.Element); base.Columns.Add(this.columnEB_Site); this.columnEB_Line = new global::System.Data.DataColumn("EB_Line", typeof(string), null, global::System.Data.MappingType.Element); base.Columns.Add(this.columnEB_Line); this.columnEB_Team = new global::System.Data.DataColumn("EB_Team", typeof(string), null, global::System.Data.MappingType.Element); base.Columns.Add(this.columnEB_Team); this.columnEB_Model = new global::System.Data.DataColumn("EB_Model", typeof(string), null, global::System.Data.MappingType.Element); base.Columns.Add(this.columnEB_Model); this.columnEB_OutSourceName = new global::System.Data.DataColumn("EB_OutSourceName", typeof(string), null, global::System.Data.MappingType.Element); base.Columns.Add(this.columnEB_OutSourceName); this.columnEB_RepairTime = new global::System.Data.DataColumn("EB_RepairTime", typeof(double), null, global::System.Data.MappingType.Element); base.Columns.Add(this.columnEB_RepairTime); this.columnEB_ConstNew = new global::System.Data.DataColumn("EB_ConstNew", typeof(double), null, global::System.Data.MappingType.Element); base.Columns.Add(this.columnEB_ConstNew); this.columnEB_BoardName = new global::System.Data.DataColumn("EB_BoardName", typeof(string), null, global::System.Data.MappingType.Element); base.Columns.Add(this.columnEB_BoardName); this.columnbAlert = new global::System.Data.DataColumn("bAlert", typeof(bool), null, global::System.Data.MappingType.Element); base.Columns.Add(this.columnbAlert); this.columnchampionid = new global::System.Data.DataColumn("championid", typeof(string), null, global::System.Data.MappingType.Element); base.Columns.Add(this.columnchampionid); this.columndesignid = new global::System.Data.DataColumn("designid", typeof(string), null, global::System.Data.MappingType.Element); base.Columns.Add(this.columndesignid); this.columnassemblyid = new global::System.Data.DataColumn("assemblyid", typeof(string), null, global::System.Data.MappingType.Element); base.Columns.Add(this.columnassemblyid); this.columnepanelid = new global::System.Data.DataColumn("epanelid", typeof(string), null, global::System.Data.MappingType.Element); base.Columns.Add(this.columnepanelid); this.columnsoftwareid = new global::System.Data.DataColumn("softwareid", typeof(string), null, global::System.Data.MappingType.Element); base.Columns.Add(this.columnsoftwareid); this.columnuserAssembly = new global::System.Data.DataColumn("userAssembly", typeof(string), null, global::System.Data.MappingType.Element); base.Columns.Add(this.columnuserAssembly); this.columnReqLine = new global::System.Data.DataColumn("ReqLine", typeof(string), null, global::System.Data.MappingType.Element); base.Columns.Add(this.columnReqLine); this.columnReqSite = new global::System.Data.DataColumn("ReqSite", typeof(string), null, global::System.Data.MappingType.Element); base.Columns.Add(this.columnReqSite); this.columnReqPackage = new global::System.Data.DataColumn("ReqPackage", typeof(string), null, global::System.Data.MappingType.Element); base.Columns.Add(this.columnReqPackage); this.columnReqPlant = new global::System.Data.DataColumn("ReqPlant", typeof(string), null, global::System.Data.MappingType.Element); base.Columns.Add(this.columnReqPlant); this.columnpno = new global::System.Data.DataColumn("pno", typeof(int), null, global::System.Data.MappingType.Element); base.Columns.Add(this.columnpno); this.columnkdate = new global::System.Data.DataColumn("kdate", typeof(string), null, global::System.Data.MappingType.Element); base.Columns.Add(this.columnkdate); this.columnjasmin = new global::System.Data.DataColumn("jasmin", typeof(int), null, global::System.Data.MappingType.Element); base.Columns.Add(this.columnjasmin); this.columnsfi = new global::System.Data.DataColumn("sfi", typeof(double), null, global::System.Data.MappingType.Element); base.Columns.Add(this.columnsfi); this.columnsfi_type = new global::System.Data.DataColumn("sfi_type", typeof(string), null, global::System.Data.MappingType.Element); base.Columns.Add(this.columnsfi_type); this.columnsfi_savetime = new global::System.Data.DataColumn("sfi_savetime", typeof(double), null, global::System.Data.MappingType.Element); base.Columns.Add(this.columnsfi_savetime); this.columnsfi_savecount = new global::System.Data.DataColumn("sfi_savecount", typeof(double), null, global::System.Data.MappingType.Element); base.Columns.Add(this.columnsfi_savecount); this.columnsfi_shiftcount = new global::System.Data.DataColumn("sfi_shiftcount", typeof(double), null, global::System.Data.MappingType.Element); base.Columns.Add(this.columnsfi_shiftcount); this.columnsfic = new global::System.Data.DataColumn("sfic", typeof(double), null, global::System.Data.MappingType.Element); base.Columns.Add(this.columnsfic); this.columnbHighlight = new global::System.Data.DataColumn("bHighlight", typeof(bool), null, global::System.Data.MappingType.Element); base.Columns.Add(this.columnbHighlight); this.columneffect_tangible = new global::System.Data.DataColumn("effect_tangible", typeof(string), null, global::System.Data.MappingType.Element); base.Columns.Add(this.columneffect_tangible); this.columneffect_intangible = new global::System.Data.DataColumn("effect_intangible", typeof(string), null, global::System.Data.MappingType.Element); base.Columns.Add(this.columneffect_intangible); this.columnbmajoritem = new global::System.Data.DataColumn("bmajoritem", typeof(bool), null, global::System.Data.MappingType.Element); base.Columns.Add(this.columnbmajoritem); this.columncramount = new global::System.Data.DataColumn("cramount", typeof(decimal), null, global::System.Data.MappingType.Element); base.Columns.Add(this.columncramount); this.Constraints.Add(new global::System.Data.UniqueConstraint("Constraint1", new global::System.Data.DataColumn[] { this.columnidx}, true)); this.columnidx.AutoIncrement = true; this.columnidx.AutoIncrementSeed = -1; this.columnidx.AutoIncrementStep = -1; this.columnidx.AllowDBNull = false; this.columnidx.ReadOnly = true; this.columnidx.Unique = true; this.columngcode.AllowDBNull = false; this.columngcode.MaxLength = 10; this.columncategory.MaxLength = 50; this.columnstatus.MaxLength = 50; this.columnasset.MaxLength = 100; this.columnprocess.MaxLength = 50; this.columnpart.MaxLength = 50; this.columnpdate.MaxLength = 10; this.columnname.MaxLength = 255; this.columnuserManager.MaxLength = 50; this.columnusermain.MaxLength = 50; this.columnusersub.MaxLength = 50; this.columnuserhw2.MaxLength = 50; this.columnreqstaff.MaxLength = 50; this.columnremark_req.MaxLength = 2147483647; this.columnremark_ans.MaxLength = 2147483647; this.columnsdate.MaxLength = 50; this.columnddate.MaxLength = 50; this.columnedate.MaxLength = 50; this.columnodate.MaxLength = 50; this.columnbdate.MaxLength = 50; this.columnqdate.MaxLength = 50; this.columncdate.MaxLength = 50; this.columnmemo.MaxLength = 255; this.columnwuid.AllowDBNull = false; this.columnwuid.MaxLength = 20; this.columnwdate.AllowDBNull = false; this.columnorderno.MaxLength = 50; this.columncrdue.MaxLength = 10; this.columnpath.MaxLength = 300; this.columnuserprocess.MaxLength = 100; this.columnCMP_Background.MaxLength = 2147483647; this.columnCMP_Description.MaxLength = 2147483647; this.columnCMP_Before.MaxLength = 2147483647; this.columnCMP_After.MaxLength = 2147483647; this.columnCMP_After2.MaxLength = 2147483647; this.columndiv.MaxLength = 2; this.columnmodel.MaxLength = 50; this.columnserial.MaxLength = 50; this.columnEB_Site.MaxLength = 20; this.columnEB_Line.MaxLength = 10; this.columnEB_Team.MaxLength = 10; this.columnEB_Model.MaxLength = 100; this.columnEB_OutSourceName.MaxLength = 100; this.columnEB_BoardName.MaxLength = 255; this.columnchampionid.MaxLength = 20; this.columndesignid.MaxLength = 20; this.columnassemblyid.MaxLength = 20; this.columnepanelid.MaxLength = 20; this.columnsoftwareid.MaxLength = 20; this.columnuserAssembly.MaxLength = 50; this.columnReqLine.MaxLength = 50; this.columnReqSite.MaxLength = 50; this.columnReqPackage.MaxLength = 50; this.columnReqPlant.MaxLength = 50; this.columnkdate.MaxLength = 20; this.columnsfi_type.MaxLength = 1; this.columneffect_tangible.MaxLength = 1000; this.columneffect_intangible.MaxLength = 1000; } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public ProjectsRow NewProjectsRow() { return ((ProjectsRow)(this.NewRow())); } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] protected override global::System.Data.DataRow NewRowFromBuilder(global::System.Data.DataRowBuilder builder) { return new ProjectsRow(builder); } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] protected override global::System.Type GetRowType() { return typeof(ProjectsRow); } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] protected override void OnRowChanged(global::System.Data.DataRowChangeEventArgs e) { base.OnRowChanged(e); if ((this.ProjectsRowChanged != null)) { this.ProjectsRowChanged(this, new ProjectsRowChangeEvent(((ProjectsRow)(e.Row)), e.Action)); } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] protected override void OnRowChanging(global::System.Data.DataRowChangeEventArgs e) { base.OnRowChanging(e); if ((this.ProjectsRowChanging != null)) { this.ProjectsRowChanging(this, new ProjectsRowChangeEvent(((ProjectsRow)(e.Row)), e.Action)); } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] protected override void OnRowDeleted(global::System.Data.DataRowChangeEventArgs e) { base.OnRowDeleted(e); if ((this.ProjectsRowDeleted != null)) { this.ProjectsRowDeleted(this, new ProjectsRowChangeEvent(((ProjectsRow)(e.Row)), e.Action)); } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] protected override void OnRowDeleting(global::System.Data.DataRowChangeEventArgs e) { base.OnRowDeleting(e); if ((this.ProjectsRowDeleting != null)) { this.ProjectsRowDeleting(this, new ProjectsRowChangeEvent(((ProjectsRow)(e.Row)), e.Action)); } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public void RemoveProjectsRow(ProjectsRow row) { this.Rows.Remove(row); } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public static global::System.Xml.Schema.XmlSchemaComplexType GetTypedTableSchema(global::System.Xml.Schema.XmlSchemaSet xs) { global::System.Xml.Schema.XmlSchemaComplexType type = new global::System.Xml.Schema.XmlSchemaComplexType(); global::System.Xml.Schema.XmlSchemaSequence sequence = new global::System.Xml.Schema.XmlSchemaSequence(); dsProjects ds = new dsProjects(); global::System.Xml.Schema.XmlSchemaAny any1 = new global::System.Xml.Schema.XmlSchemaAny(); any1.Namespace = "http://www.w3.org/2001/XMLSchema"; any1.MinOccurs = new decimal(0); any1.MaxOccurs = decimal.MaxValue; any1.ProcessContents = global::System.Xml.Schema.XmlSchemaContentProcessing.Lax; sequence.Items.Add(any1); global::System.Xml.Schema.XmlSchemaAny any2 = new global::System.Xml.Schema.XmlSchemaAny(); any2.Namespace = "urn:schemas-microsoft-com:xml-diffgram-v1"; any2.MinOccurs = new decimal(1); any2.ProcessContents = global::System.Xml.Schema.XmlSchemaContentProcessing.Lax; sequence.Items.Add(any2); global::System.Xml.Schema.XmlSchemaAttribute attribute1 = new global::System.Xml.Schema.XmlSchemaAttribute(); attribute1.Name = "namespace"; attribute1.FixedValue = ds.Namespace; type.Attributes.Add(attribute1); global::System.Xml.Schema.XmlSchemaAttribute attribute2 = new global::System.Xml.Schema.XmlSchemaAttribute(); attribute2.Name = "tableTypeName"; attribute2.FixedValue = "ProjectsDataTable"; type.Attributes.Add(attribute2); type.Particle = sequence; global::System.Xml.Schema.XmlSchema dsSchema = ds.GetSchemaSerializable(); if (xs.Contains(dsSchema.TargetNamespace)) { global::System.IO.MemoryStream s1 = new global::System.IO.MemoryStream(); global::System.IO.MemoryStream s2 = new global::System.IO.MemoryStream(); try { global::System.Xml.Schema.XmlSchema schema = null; dsSchema.Write(s1); for (global::System.Collections.IEnumerator schemas = xs.Schemas(dsSchema.TargetNamespace).GetEnumerator(); schemas.MoveNext(); ) { schema = ((global::System.Xml.Schema.XmlSchema)(schemas.Current)); s2.SetLength(0); schema.Write(s2); if ((s1.Length == s2.Length)) { s1.Position = 0; s2.Position = 0; for (; ((s1.Position != s1.Length) && (s1.ReadByte() == s2.ReadByte())); ) { ; } if ((s1.Position == s1.Length)) { return type; } } } } finally { if ((s1 != null)) { s1.Close(); } if ((s2 != null)) { s2.Close(); } } } xs.Add(dsSchema); return type; } } /// ///Represents the strongly named DataTable class. /// [global::System.Serializable()] [global::System.Xml.Serialization.XmlSchemaProviderAttribute("GetTypedTableSchema")] public partial class EETGW_ProjectsScheduleDataTable : global::System.Data.TypedTableBase { private global::System.Data.DataColumn columnidx; private global::System.Data.DataColumn columngcode; private global::System.Data.DataColumn columnproject; private global::System.Data.DataColumn columnno; private global::System.Data.DataColumn columnseq; private global::System.Data.DataColumn columntitle; private global::System.Data.DataColumn columncate; private global::System.Data.DataColumn columnsw; private global::System.Data.DataColumn columnew; private global::System.Data.DataColumn columnswa; private global::System.Data.DataColumn columnewa; private global::System.Data.DataColumn columnuid; private global::System.Data.DataColumn columnmemo; private global::System.Data.DataColumn columnappoval; private global::System.Data.DataColumn columnprogress; private global::System.Data.DataColumn columnwuid; private global::System.Data.DataColumn columnwdate; private global::System.Data.DataColumn columncomplete; private global::System.Data.DataColumn columnuidname; [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public EETGW_ProjectsScheduleDataTable() { this.TableName = "EETGW_ProjectsSchedule"; this.BeginInit(); this.InitClass(); this.EndInit(); } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] internal EETGW_ProjectsScheduleDataTable(global::System.Data.DataTable table) { this.TableName = table.TableName; if ((table.CaseSensitive != table.DataSet.CaseSensitive)) { this.CaseSensitive = table.CaseSensitive; } if ((table.Locale.ToString() != table.DataSet.Locale.ToString())) { this.Locale = table.Locale; } if ((table.Namespace != table.DataSet.Namespace)) { this.Namespace = table.Namespace; } this.Prefix = table.Prefix; this.MinimumCapacity = table.MinimumCapacity; } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] protected EETGW_ProjectsScheduleDataTable(global::System.Runtime.Serialization.SerializationInfo info, global::System.Runtime.Serialization.StreamingContext context) : base(info, context) { this.InitVars(); } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public global::System.Data.DataColumn idxColumn { get { return this.columnidx; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public global::System.Data.DataColumn gcodeColumn { get { return this.columngcode; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public global::System.Data.DataColumn projectColumn { get { return this.columnproject; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public global::System.Data.DataColumn noColumn { get { return this.columnno; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public global::System.Data.DataColumn seqColumn { get { return this.columnseq; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public global::System.Data.DataColumn titleColumn { get { return this.columntitle; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public global::System.Data.DataColumn cateColumn { get { return this.columncate; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public global::System.Data.DataColumn swColumn { get { return this.columnsw; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public global::System.Data.DataColumn ewColumn { get { return this.columnew; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public global::System.Data.DataColumn swaColumn { get { return this.columnswa; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public global::System.Data.DataColumn ewaColumn { get { return this.columnewa; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public global::System.Data.DataColumn uidColumn { get { return this.columnuid; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public global::System.Data.DataColumn memoColumn { get { return this.columnmemo; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public global::System.Data.DataColumn appovalColumn { get { return this.columnappoval; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public global::System.Data.DataColumn progressColumn { get { return this.columnprogress; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public global::System.Data.DataColumn wuidColumn { get { return this.columnwuid; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public global::System.Data.DataColumn wdateColumn { get { return this.columnwdate; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public global::System.Data.DataColumn completeColumn { get { return this.columncomplete; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public global::System.Data.DataColumn uidnameColumn { get { return this.columnuidname; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] [global::System.ComponentModel.Browsable(false)] public int Count { get { return this.Rows.Count; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public EETGW_ProjectsScheduleRow this[int index] { get { return ((EETGW_ProjectsScheduleRow)(this.Rows[index])); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public event EETGW_ProjectsScheduleRowChangeEventHandler EETGW_ProjectsScheduleRowChanging; [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public event EETGW_ProjectsScheduleRowChangeEventHandler EETGW_ProjectsScheduleRowChanged; [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public event EETGW_ProjectsScheduleRowChangeEventHandler EETGW_ProjectsScheduleRowDeleting; [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public event EETGW_ProjectsScheduleRowChangeEventHandler EETGW_ProjectsScheduleRowDeleted; [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public void AddEETGW_ProjectsScheduleRow(EETGW_ProjectsScheduleRow row) { this.Rows.Add(row); } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public EETGW_ProjectsScheduleRow AddEETGW_ProjectsScheduleRow( string gcode, int project, int no, int seq, string title, string cate, string sw, string ew, string swa, string ewa, string uid, string memo, int appoval, int progress, string wuid, System.DateTime wdate, bool complete, string uidname) { EETGW_ProjectsScheduleRow rowEETGW_ProjectsScheduleRow = ((EETGW_ProjectsScheduleRow)(this.NewRow())); object[] columnValuesArray = new object[] { null, gcode, project, no, seq, title, cate, sw, ew, swa, ewa, uid, memo, appoval, progress, wuid, wdate, complete, uidname}; rowEETGW_ProjectsScheduleRow.ItemArray = columnValuesArray; this.Rows.Add(rowEETGW_ProjectsScheduleRow); return rowEETGW_ProjectsScheduleRow; } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public EETGW_ProjectsScheduleRow FindByidx(int idx) { return ((EETGW_ProjectsScheduleRow)(this.Rows.Find(new object[] { idx}))); } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public override global::System.Data.DataTable Clone() { EETGW_ProjectsScheduleDataTable cln = ((EETGW_ProjectsScheduleDataTable)(base.Clone())); cln.InitVars(); return cln; } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] protected override global::System.Data.DataTable CreateInstance() { return new EETGW_ProjectsScheduleDataTable(); } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] internal void InitVars() { this.columnidx = base.Columns["idx"]; this.columngcode = base.Columns["gcode"]; this.columnproject = base.Columns["project"]; this.columnno = base.Columns["no"]; this.columnseq = base.Columns["seq"]; this.columntitle = base.Columns["title"]; this.columncate = base.Columns["cate"]; this.columnsw = base.Columns["sw"]; this.columnew = base.Columns["ew"]; this.columnswa = base.Columns["swa"]; this.columnewa = base.Columns["ewa"]; this.columnuid = base.Columns["uid"]; this.columnmemo = base.Columns["memo"]; this.columnappoval = base.Columns["appoval"]; this.columnprogress = base.Columns["progress"]; this.columnwuid = base.Columns["wuid"]; this.columnwdate = base.Columns["wdate"]; this.columncomplete = base.Columns["complete"]; this.columnuidname = base.Columns["uidname"]; } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] private void InitClass() { this.columnidx = new global::System.Data.DataColumn("idx", typeof(int), null, global::System.Data.MappingType.Element); base.Columns.Add(this.columnidx); this.columngcode = new global::System.Data.DataColumn("gcode", typeof(string), null, global::System.Data.MappingType.Element); base.Columns.Add(this.columngcode); this.columnproject = new global::System.Data.DataColumn("project", typeof(int), null, global::System.Data.MappingType.Element); base.Columns.Add(this.columnproject); this.columnno = new global::System.Data.DataColumn("no", typeof(int), null, global::System.Data.MappingType.Element); base.Columns.Add(this.columnno); this.columnseq = new global::System.Data.DataColumn("seq", typeof(int), null, global::System.Data.MappingType.Element); base.Columns.Add(this.columnseq); this.columntitle = new global::System.Data.DataColumn("title", typeof(string), null, global::System.Data.MappingType.Element); base.Columns.Add(this.columntitle); this.columncate = new global::System.Data.DataColumn("cate", typeof(string), null, global::System.Data.MappingType.Element); base.Columns.Add(this.columncate); this.columnsw = new global::System.Data.DataColumn("sw", typeof(string), null, global::System.Data.MappingType.Element); base.Columns.Add(this.columnsw); this.columnew = new global::System.Data.DataColumn("ew", typeof(string), null, global::System.Data.MappingType.Element); base.Columns.Add(this.columnew); this.columnswa = new global::System.Data.DataColumn("swa", typeof(string), null, global::System.Data.MappingType.Element); base.Columns.Add(this.columnswa); this.columnewa = new global::System.Data.DataColumn("ewa", typeof(string), null, global::System.Data.MappingType.Element); base.Columns.Add(this.columnewa); this.columnuid = new global::System.Data.DataColumn("uid", typeof(string), null, global::System.Data.MappingType.Element); base.Columns.Add(this.columnuid); this.columnmemo = new global::System.Data.DataColumn("memo", typeof(string), null, global::System.Data.MappingType.Element); base.Columns.Add(this.columnmemo); this.columnappoval = new global::System.Data.DataColumn("appoval", typeof(int), null, global::System.Data.MappingType.Element); base.Columns.Add(this.columnappoval); this.columnprogress = new global::System.Data.DataColumn("progress", typeof(int), null, global::System.Data.MappingType.Element); base.Columns.Add(this.columnprogress); this.columnwuid = new global::System.Data.DataColumn("wuid", typeof(string), null, global::System.Data.MappingType.Element); base.Columns.Add(this.columnwuid); this.columnwdate = new global::System.Data.DataColumn("wdate", typeof(global::System.DateTime), null, global::System.Data.MappingType.Element); base.Columns.Add(this.columnwdate); this.columncomplete = new global::System.Data.DataColumn("complete", typeof(bool), null, global::System.Data.MappingType.Element); base.Columns.Add(this.columncomplete); this.columnuidname = new global::System.Data.DataColumn("uidname", typeof(string), null, global::System.Data.MappingType.Element); base.Columns.Add(this.columnuidname); this.Constraints.Add(new global::System.Data.UniqueConstraint("Constraint1", new global::System.Data.DataColumn[] { this.columnidx}, true)); this.columnidx.AutoIncrement = true; this.columnidx.AutoIncrementSeed = -1; this.columnidx.AutoIncrementStep = -1; this.columnidx.AllowDBNull = false; this.columnidx.ReadOnly = true; this.columnidx.Unique = true; this.columngcode.MaxLength = 20; this.columntitle.MaxLength = 100; this.columncate.MaxLength = 20; this.columnsw.MaxLength = 10; this.columnew.MaxLength = 10; this.columnswa.MaxLength = 10; this.columnewa.MaxLength = 10; this.columnuid.MaxLength = 50; this.columnmemo.MaxLength = 2147483647; this.columnwuid.AllowDBNull = false; this.columnwuid.MaxLength = 20; this.columnwdate.AllowDBNull = false; this.columnuidname.MaxLength = 50; } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public EETGW_ProjectsScheduleRow NewEETGW_ProjectsScheduleRow() { return ((EETGW_ProjectsScheduleRow)(this.NewRow())); } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] protected override global::System.Data.DataRow NewRowFromBuilder(global::System.Data.DataRowBuilder builder) { return new EETGW_ProjectsScheduleRow(builder); } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] protected override global::System.Type GetRowType() { return typeof(EETGW_ProjectsScheduleRow); } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] protected override void OnRowChanged(global::System.Data.DataRowChangeEventArgs e) { base.OnRowChanged(e); if ((this.EETGW_ProjectsScheduleRowChanged != null)) { this.EETGW_ProjectsScheduleRowChanged(this, new EETGW_ProjectsScheduleRowChangeEvent(((EETGW_ProjectsScheduleRow)(e.Row)), e.Action)); } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] protected override void OnRowChanging(global::System.Data.DataRowChangeEventArgs e) { base.OnRowChanging(e); if ((this.EETGW_ProjectsScheduleRowChanging != null)) { this.EETGW_ProjectsScheduleRowChanging(this, new EETGW_ProjectsScheduleRowChangeEvent(((EETGW_ProjectsScheduleRow)(e.Row)), e.Action)); } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] protected override void OnRowDeleted(global::System.Data.DataRowChangeEventArgs e) { base.OnRowDeleted(e); if ((this.EETGW_ProjectsScheduleRowDeleted != null)) { this.EETGW_ProjectsScheduleRowDeleted(this, new EETGW_ProjectsScheduleRowChangeEvent(((EETGW_ProjectsScheduleRow)(e.Row)), e.Action)); } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] protected override void OnRowDeleting(global::System.Data.DataRowChangeEventArgs e) { base.OnRowDeleting(e); if ((this.EETGW_ProjectsScheduleRowDeleting != null)) { this.EETGW_ProjectsScheduleRowDeleting(this, new EETGW_ProjectsScheduleRowChangeEvent(((EETGW_ProjectsScheduleRow)(e.Row)), e.Action)); } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public void RemoveEETGW_ProjectsScheduleRow(EETGW_ProjectsScheduleRow row) { this.Rows.Remove(row); } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public static global::System.Xml.Schema.XmlSchemaComplexType GetTypedTableSchema(global::System.Xml.Schema.XmlSchemaSet xs) { global::System.Xml.Schema.XmlSchemaComplexType type = new global::System.Xml.Schema.XmlSchemaComplexType(); global::System.Xml.Schema.XmlSchemaSequence sequence = new global::System.Xml.Schema.XmlSchemaSequence(); dsProjects ds = new dsProjects(); global::System.Xml.Schema.XmlSchemaAny any1 = new global::System.Xml.Schema.XmlSchemaAny(); any1.Namespace = "http://www.w3.org/2001/XMLSchema"; any1.MinOccurs = new decimal(0); any1.MaxOccurs = decimal.MaxValue; any1.ProcessContents = global::System.Xml.Schema.XmlSchemaContentProcessing.Lax; sequence.Items.Add(any1); global::System.Xml.Schema.XmlSchemaAny any2 = new global::System.Xml.Schema.XmlSchemaAny(); any2.Namespace = "urn:schemas-microsoft-com:xml-diffgram-v1"; any2.MinOccurs = new decimal(1); any2.ProcessContents = global::System.Xml.Schema.XmlSchemaContentProcessing.Lax; sequence.Items.Add(any2); global::System.Xml.Schema.XmlSchemaAttribute attribute1 = new global::System.Xml.Schema.XmlSchemaAttribute(); attribute1.Name = "namespace"; attribute1.FixedValue = ds.Namespace; type.Attributes.Add(attribute1); global::System.Xml.Schema.XmlSchemaAttribute attribute2 = new global::System.Xml.Schema.XmlSchemaAttribute(); attribute2.Name = "tableTypeName"; attribute2.FixedValue = "EETGW_ProjectsScheduleDataTable"; type.Attributes.Add(attribute2); type.Particle = sequence; global::System.Xml.Schema.XmlSchema dsSchema = ds.GetSchemaSerializable(); if (xs.Contains(dsSchema.TargetNamespace)) { global::System.IO.MemoryStream s1 = new global::System.IO.MemoryStream(); global::System.IO.MemoryStream s2 = new global::System.IO.MemoryStream(); try { global::System.Xml.Schema.XmlSchema schema = null; dsSchema.Write(s1); for (global::System.Collections.IEnumerator schemas = xs.Schemas(dsSchema.TargetNamespace).GetEnumerator(); schemas.MoveNext(); ) { schema = ((global::System.Xml.Schema.XmlSchema)(schemas.Current)); s2.SetLength(0); schema.Write(s2); if ((s1.Length == s2.Length)) { s1.Position = 0; s2.Position = 0; for (; ((s1.Position != s1.Length) && (s1.ReadByte() == s2.ReadByte())); ) { ; } if ((s1.Position == s1.Length)) { return type; } } } } finally { if ((s1 != null)) { s1.Close(); } if ((s2 != null)) { s2.Close(); } } } xs.Add(dsSchema); return type; } } /// ///Represents the strongly named DataTable class. /// [global::System.Serializable()] [global::System.Xml.Serialization.XmlSchemaProviderAttribute("GetTypedTableSchema")] public partial class ProjectsPartDataTable : global::System.Data.TypedTableBase { private global::System.Data.DataColumn columnidx; private global::System.Data.DataColumn columnno; private global::System.Data.DataColumn columnProject; private global::System.Data.DataColumn columnItemGroup; private global::System.Data.DataColumn columnItemModel; private global::System.Data.DataColumn columnItemUnit; private global::System.Data.DataColumn columnItemName; private global::System.Data.DataColumn columnItemSid; private global::System.Data.DataColumn columnItemSupply; private global::System.Data.DataColumn columnItemSupplyidx; private global::System.Data.DataColumn columnItemManu; private global::System.Data.DataColumn columnItem; private global::System.Data.DataColumn columnoption1; private global::System.Data.DataColumn columnoption2; private global::System.Data.DataColumn columnoption3; private global::System.Data.DataColumn columnqty; private global::System.Data.DataColumn columnqtyn; private global::System.Data.DataColumn columnprice; private global::System.Data.DataColumn columnpriceD; private global::System.Data.DataColumn columnamt; private global::System.Data.DataColumn columnamtn; private global::System.Data.DataColumn columnjago; private global::System.Data.DataColumn columnremark; private global::System.Data.DataColumn columnmemo; private global::System.Data.DataColumn columnwuid; private global::System.Data.DataColumn columnwdate; private global::System.Data.DataColumn columnimport; private global::System.Data.DataColumn columnqtyjago; private global::System.Data.DataColumn columnqtybuy; private global::System.Data.DataColumn columnqtyin; private global::System.Data.DataColumn columnbbuy; private global::System.Data.DataColumn columnbconfirm; private global::System.Data.DataColumn columnbCancel; private global::System.Data.DataColumn columnreqUser; private global::System.Data.DataColumn columnrecvUser; private global::System.Data.DataColumn columnrecvDate; [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public ProjectsPartDataTable() { this.TableName = "ProjectsPart"; this.BeginInit(); this.InitClass(); this.EndInit(); } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] internal ProjectsPartDataTable(global::System.Data.DataTable table) { this.TableName = table.TableName; if ((table.CaseSensitive != table.DataSet.CaseSensitive)) { this.CaseSensitive = table.CaseSensitive; } if ((table.Locale.ToString() != table.DataSet.Locale.ToString())) { this.Locale = table.Locale; } if ((table.Namespace != table.DataSet.Namespace)) { this.Namespace = table.Namespace; } this.Prefix = table.Prefix; this.MinimumCapacity = table.MinimumCapacity; } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] protected ProjectsPartDataTable(global::System.Runtime.Serialization.SerializationInfo info, global::System.Runtime.Serialization.StreamingContext context) : base(info, context) { this.InitVars(); } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public global::System.Data.DataColumn idxColumn { get { return this.columnidx; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public global::System.Data.DataColumn noColumn { get { return this.columnno; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public global::System.Data.DataColumn ProjectColumn { get { return this.columnProject; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public global::System.Data.DataColumn ItemGroupColumn { get { return this.columnItemGroup; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public global::System.Data.DataColumn ItemModelColumn { get { return this.columnItemModel; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public global::System.Data.DataColumn ItemUnitColumn { get { return this.columnItemUnit; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public global::System.Data.DataColumn ItemNameColumn { get { return this.columnItemName; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public global::System.Data.DataColumn ItemSidColumn { get { return this.columnItemSid; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public global::System.Data.DataColumn ItemSupplyColumn { get { return this.columnItemSupply; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public global::System.Data.DataColumn ItemSupplyidxColumn { get { return this.columnItemSupplyidx; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public global::System.Data.DataColumn ItemManuColumn { get { return this.columnItemManu; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public global::System.Data.DataColumn ItemColumn { get { return this.columnItem; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public global::System.Data.DataColumn option1Column { get { return this.columnoption1; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public global::System.Data.DataColumn option2Column { get { return this.columnoption2; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public global::System.Data.DataColumn option3Column { get { return this.columnoption3; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public global::System.Data.DataColumn qtyColumn { get { return this.columnqty; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public global::System.Data.DataColumn qtynColumn { get { return this.columnqtyn; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public global::System.Data.DataColumn priceColumn { get { return this.columnprice; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public global::System.Data.DataColumn priceDColumn { get { return this.columnpriceD; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public global::System.Data.DataColumn amtColumn { get { return this.columnamt; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public global::System.Data.DataColumn amtnColumn { get { return this.columnamtn; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public global::System.Data.DataColumn jagoColumn { get { return this.columnjago; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public global::System.Data.DataColumn remarkColumn { get { return this.columnremark; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public global::System.Data.DataColumn memoColumn { get { return this.columnmemo; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public global::System.Data.DataColumn wuidColumn { get { return this.columnwuid; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public global::System.Data.DataColumn wdateColumn { get { return this.columnwdate; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public global::System.Data.DataColumn importColumn { get { return this.columnimport; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public global::System.Data.DataColumn qtyjagoColumn { get { return this.columnqtyjago; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public global::System.Data.DataColumn qtybuyColumn { get { return this.columnqtybuy; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public global::System.Data.DataColumn qtyinColumn { get { return this.columnqtyin; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public global::System.Data.DataColumn bbuyColumn { get { return this.columnbbuy; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public global::System.Data.DataColumn bconfirmColumn { get { return this.columnbconfirm; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public global::System.Data.DataColumn bCancelColumn { get { return this.columnbCancel; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public global::System.Data.DataColumn reqUserColumn { get { return this.columnreqUser; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public global::System.Data.DataColumn recvUserColumn { get { return this.columnrecvUser; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public global::System.Data.DataColumn recvDateColumn { get { return this.columnrecvDate; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] [global::System.ComponentModel.Browsable(false)] public int Count { get { return this.Rows.Count; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public ProjectsPartRow this[int index] { get { return ((ProjectsPartRow)(this.Rows[index])); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public event ProjectsPartRowChangeEventHandler ProjectsPartRowChanging; [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public event ProjectsPartRowChangeEventHandler ProjectsPartRowChanged; [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public event ProjectsPartRowChangeEventHandler ProjectsPartRowDeleting; [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public event ProjectsPartRowChangeEventHandler ProjectsPartRowDeleted; [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public void AddProjectsPartRow(ProjectsPartRow row) { this.Rows.Add(row); } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public ProjectsPartRow AddProjectsPartRow( int no, int Project, string ItemGroup, string ItemModel, string ItemUnit, string ItemName, string ItemSid, string ItemSupply, int ItemSupplyidx, string ItemManu, int Item, string option1, string option2, string option3, int qty, int qtyn, decimal price, decimal priceD, decimal amt, decimal amtn, int jago, string remark, string memo, string wuid, System.DateTime wdate, bool import, string qtyjago, int qtybuy, int qtyin, bool bbuy, bool bconfirm, bool bCancel, string reqUser, string recvUser, string recvDate) { ProjectsPartRow rowProjectsPartRow = ((ProjectsPartRow)(this.NewRow())); object[] columnValuesArray = new object[] { null, no, Project, ItemGroup, ItemModel, ItemUnit, ItemName, ItemSid, ItemSupply, ItemSupplyidx, ItemManu, Item, option1, option2, option3, qty, qtyn, price, priceD, amt, amtn, jago, remark, memo, wuid, wdate, import, qtyjago, qtybuy, qtyin, bbuy, bconfirm, bCancel, reqUser, recvUser, recvDate}; rowProjectsPartRow.ItemArray = columnValuesArray; this.Rows.Add(rowProjectsPartRow); return rowProjectsPartRow; } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public ProjectsPartRow FindByidx(int idx) { return ((ProjectsPartRow)(this.Rows.Find(new object[] { idx}))); } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public override global::System.Data.DataTable Clone() { ProjectsPartDataTable cln = ((ProjectsPartDataTable)(base.Clone())); cln.InitVars(); return cln; } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] protected override global::System.Data.DataTable CreateInstance() { return new ProjectsPartDataTable(); } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] internal void InitVars() { this.columnidx = base.Columns["idx"]; this.columnno = base.Columns["no"]; this.columnProject = base.Columns["Project"]; this.columnItemGroup = base.Columns["ItemGroup"]; this.columnItemModel = base.Columns["ItemModel"]; this.columnItemUnit = base.Columns["ItemUnit"]; this.columnItemName = base.Columns["ItemName"]; this.columnItemSid = base.Columns["ItemSid"]; this.columnItemSupply = base.Columns["ItemSupply"]; this.columnItemSupplyidx = base.Columns["ItemSupplyidx"]; this.columnItemManu = base.Columns["ItemManu"]; this.columnItem = base.Columns["Item"]; this.columnoption1 = base.Columns["option1"]; this.columnoption2 = base.Columns["option2"]; this.columnoption3 = base.Columns["option3"]; this.columnqty = base.Columns["qty"]; this.columnqtyn = base.Columns["qtyn"]; this.columnprice = base.Columns["price"]; this.columnpriceD = base.Columns["priceD"]; this.columnamt = base.Columns["amt"]; this.columnamtn = base.Columns["amtn"]; this.columnjago = base.Columns["jago"]; this.columnremark = base.Columns["remark"]; this.columnmemo = base.Columns["memo"]; this.columnwuid = base.Columns["wuid"]; this.columnwdate = base.Columns["wdate"]; this.columnimport = base.Columns["import"]; this.columnqtyjago = base.Columns["qtyjago"]; this.columnqtybuy = base.Columns["qtybuy"]; this.columnqtyin = base.Columns["qtyin"]; this.columnbbuy = base.Columns["bbuy"]; this.columnbconfirm = base.Columns["bconfirm"]; this.columnbCancel = base.Columns["bCancel"]; this.columnreqUser = base.Columns["reqUser"]; this.columnrecvUser = base.Columns["recvUser"]; this.columnrecvDate = base.Columns["recvDate"]; } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] private void InitClass() { this.columnidx = new global::System.Data.DataColumn("idx", typeof(int), null, global::System.Data.MappingType.Element); base.Columns.Add(this.columnidx); this.columnno = new global::System.Data.DataColumn("no", typeof(int), null, global::System.Data.MappingType.Element); base.Columns.Add(this.columnno); this.columnProject = new global::System.Data.DataColumn("Project", typeof(int), null, global::System.Data.MappingType.Element); base.Columns.Add(this.columnProject); this.columnItemGroup = new global::System.Data.DataColumn("ItemGroup", typeof(string), null, global::System.Data.MappingType.Element); base.Columns.Add(this.columnItemGroup); this.columnItemModel = new global::System.Data.DataColumn("ItemModel", typeof(string), null, global::System.Data.MappingType.Element); base.Columns.Add(this.columnItemModel); this.columnItemUnit = new global::System.Data.DataColumn("ItemUnit", typeof(string), null, global::System.Data.MappingType.Element); base.Columns.Add(this.columnItemUnit); this.columnItemName = new global::System.Data.DataColumn("ItemName", typeof(string), null, global::System.Data.MappingType.Element); base.Columns.Add(this.columnItemName); this.columnItemSid = new global::System.Data.DataColumn("ItemSid", typeof(string), null, global::System.Data.MappingType.Element); base.Columns.Add(this.columnItemSid); this.columnItemSupply = new global::System.Data.DataColumn("ItemSupply", typeof(string), null, global::System.Data.MappingType.Element); base.Columns.Add(this.columnItemSupply); this.columnItemSupplyidx = new global::System.Data.DataColumn("ItemSupplyidx", typeof(int), null, global::System.Data.MappingType.Element); base.Columns.Add(this.columnItemSupplyidx); this.columnItemManu = new global::System.Data.DataColumn("ItemManu", typeof(string), null, global::System.Data.MappingType.Element); base.Columns.Add(this.columnItemManu); this.columnItem = new global::System.Data.DataColumn("Item", typeof(int), null, global::System.Data.MappingType.Element); this.columnItem.ExtendedProperties.Add("Generator_ColumnPropNameInRow", "Item"); this.columnItem.ExtendedProperties.Add("Generator_ColumnPropNameInTable", "ItemColumn"); this.columnItem.ExtendedProperties.Add("Generator_ColumnVarNameInTable", "columnItem"); this.columnItem.ExtendedProperties.Add("Generator_UserColumnName", "Item"); base.Columns.Add(this.columnItem); this.columnoption1 = new global::System.Data.DataColumn("option1", typeof(string), null, global::System.Data.MappingType.Element); base.Columns.Add(this.columnoption1); this.columnoption2 = new global::System.Data.DataColumn("option2", typeof(string), null, global::System.Data.MappingType.Element); base.Columns.Add(this.columnoption2); this.columnoption3 = new global::System.Data.DataColumn("option3", typeof(string), null, global::System.Data.MappingType.Element); base.Columns.Add(this.columnoption3); this.columnqty = new global::System.Data.DataColumn("qty", typeof(int), null, global::System.Data.MappingType.Element); base.Columns.Add(this.columnqty); this.columnqtyn = new global::System.Data.DataColumn("qtyn", typeof(int), null, global::System.Data.MappingType.Element); base.Columns.Add(this.columnqtyn); this.columnprice = new global::System.Data.DataColumn("price", typeof(decimal), null, global::System.Data.MappingType.Element); base.Columns.Add(this.columnprice); this.columnpriceD = new global::System.Data.DataColumn("priceD", typeof(decimal), null, global::System.Data.MappingType.Element); base.Columns.Add(this.columnpriceD); this.columnamt = new global::System.Data.DataColumn("amt", typeof(decimal), null, global::System.Data.MappingType.Element); base.Columns.Add(this.columnamt); this.columnamtn = new global::System.Data.DataColumn("amtn", typeof(decimal), null, global::System.Data.MappingType.Element); base.Columns.Add(this.columnamtn); this.columnjago = new global::System.Data.DataColumn("jago", typeof(int), null, global::System.Data.MappingType.Element); base.Columns.Add(this.columnjago); this.columnremark = new global::System.Data.DataColumn("remark", typeof(string), null, global::System.Data.MappingType.Element); base.Columns.Add(this.columnremark); this.columnmemo = new global::System.Data.DataColumn("memo", typeof(string), null, global::System.Data.MappingType.Element); base.Columns.Add(this.columnmemo); this.columnwuid = new global::System.Data.DataColumn("wuid", typeof(string), null, global::System.Data.MappingType.Element); base.Columns.Add(this.columnwuid); this.columnwdate = new global::System.Data.DataColumn("wdate", typeof(global::System.DateTime), null, global::System.Data.MappingType.Element); base.Columns.Add(this.columnwdate); this.columnimport = new global::System.Data.DataColumn("import", typeof(bool), null, global::System.Data.MappingType.Element); base.Columns.Add(this.columnimport); this.columnqtyjago = new global::System.Data.DataColumn("qtyjago", typeof(string), null, global::System.Data.MappingType.Element); base.Columns.Add(this.columnqtyjago); this.columnqtybuy = new global::System.Data.DataColumn("qtybuy", typeof(int), null, global::System.Data.MappingType.Element); base.Columns.Add(this.columnqtybuy); this.columnqtyin = new global::System.Data.DataColumn("qtyin", typeof(int), null, global::System.Data.MappingType.Element); base.Columns.Add(this.columnqtyin); this.columnbbuy = new global::System.Data.DataColumn("bbuy", typeof(bool), null, global::System.Data.MappingType.Element); base.Columns.Add(this.columnbbuy); this.columnbconfirm = new global::System.Data.DataColumn("bconfirm", typeof(bool), null, global::System.Data.MappingType.Element); base.Columns.Add(this.columnbconfirm); this.columnbCancel = new global::System.Data.DataColumn("bCancel", typeof(bool), null, global::System.Data.MappingType.Element); base.Columns.Add(this.columnbCancel); this.columnreqUser = new global::System.Data.DataColumn("reqUser", typeof(string), null, global::System.Data.MappingType.Element); base.Columns.Add(this.columnreqUser); this.columnrecvUser = new global::System.Data.DataColumn("recvUser", typeof(string), null, global::System.Data.MappingType.Element); base.Columns.Add(this.columnrecvUser); this.columnrecvDate = new global::System.Data.DataColumn("recvDate", typeof(string), null, global::System.Data.MappingType.Element); base.Columns.Add(this.columnrecvDate); this.Constraints.Add(new global::System.Data.UniqueConstraint("Constraint1", new global::System.Data.DataColumn[] { this.columnidx}, true)); this.columnidx.AutoIncrement = true; this.columnidx.AutoIncrementSeed = -1; this.columnidx.AutoIncrementStep = -1; this.columnidx.AllowDBNull = false; this.columnidx.ReadOnly = true; this.columnidx.Unique = true; this.columnItemGroup.MaxLength = 100; this.columnItemModel.MaxLength = 200; this.columnItemUnit.MaxLength = 50; this.columnItemName.MaxLength = 200; this.columnItemSid.MaxLength = 50; this.columnItemSupply.MaxLength = 100; this.columnItemManu.MaxLength = 100; this.columnoption1.MaxLength = 255; this.columnoption2.MaxLength = 255; this.columnoption3.MaxLength = 255; this.columnremark.MaxLength = 255; this.columnmemo.MaxLength = 255; this.columnwuid.AllowDBNull = false; this.columnwuid.MaxLength = 20; this.columnwdate.AllowDBNull = false; this.columnqtyjago.MaxLength = 50; this.columnreqUser.MaxLength = 30; this.columnrecvUser.MaxLength = 30; this.columnrecvDate.MaxLength = 10; } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public ProjectsPartRow NewProjectsPartRow() { return ((ProjectsPartRow)(this.NewRow())); } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] protected override global::System.Data.DataRow NewRowFromBuilder(global::System.Data.DataRowBuilder builder) { return new ProjectsPartRow(builder); } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] protected override global::System.Type GetRowType() { return typeof(ProjectsPartRow); } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] protected override void OnRowChanged(global::System.Data.DataRowChangeEventArgs e) { base.OnRowChanged(e); if ((this.ProjectsPartRowChanged != null)) { this.ProjectsPartRowChanged(this, new ProjectsPartRowChangeEvent(((ProjectsPartRow)(e.Row)), e.Action)); } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] protected override void OnRowChanging(global::System.Data.DataRowChangeEventArgs e) { base.OnRowChanging(e); if ((this.ProjectsPartRowChanging != null)) { this.ProjectsPartRowChanging(this, new ProjectsPartRowChangeEvent(((ProjectsPartRow)(e.Row)), e.Action)); } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] protected override void OnRowDeleted(global::System.Data.DataRowChangeEventArgs e) { base.OnRowDeleted(e); if ((this.ProjectsPartRowDeleted != null)) { this.ProjectsPartRowDeleted(this, new ProjectsPartRowChangeEvent(((ProjectsPartRow)(e.Row)), e.Action)); } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] protected override void OnRowDeleting(global::System.Data.DataRowChangeEventArgs e) { base.OnRowDeleting(e); if ((this.ProjectsPartRowDeleting != null)) { this.ProjectsPartRowDeleting(this, new ProjectsPartRowChangeEvent(((ProjectsPartRow)(e.Row)), e.Action)); } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public void RemoveProjectsPartRow(ProjectsPartRow row) { this.Rows.Remove(row); } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public static global::System.Xml.Schema.XmlSchemaComplexType GetTypedTableSchema(global::System.Xml.Schema.XmlSchemaSet xs) { global::System.Xml.Schema.XmlSchemaComplexType type = new global::System.Xml.Schema.XmlSchemaComplexType(); global::System.Xml.Schema.XmlSchemaSequence sequence = new global::System.Xml.Schema.XmlSchemaSequence(); dsProjects ds = new dsProjects(); global::System.Xml.Schema.XmlSchemaAny any1 = new global::System.Xml.Schema.XmlSchemaAny(); any1.Namespace = "http://www.w3.org/2001/XMLSchema"; any1.MinOccurs = new decimal(0); any1.MaxOccurs = decimal.MaxValue; any1.ProcessContents = global::System.Xml.Schema.XmlSchemaContentProcessing.Lax; sequence.Items.Add(any1); global::System.Xml.Schema.XmlSchemaAny any2 = new global::System.Xml.Schema.XmlSchemaAny(); any2.Namespace = "urn:schemas-microsoft-com:xml-diffgram-v1"; any2.MinOccurs = new decimal(1); any2.ProcessContents = global::System.Xml.Schema.XmlSchemaContentProcessing.Lax; sequence.Items.Add(any2); global::System.Xml.Schema.XmlSchemaAttribute attribute1 = new global::System.Xml.Schema.XmlSchemaAttribute(); attribute1.Name = "namespace"; attribute1.FixedValue = ds.Namespace; type.Attributes.Add(attribute1); global::System.Xml.Schema.XmlSchemaAttribute attribute2 = new global::System.Xml.Schema.XmlSchemaAttribute(); attribute2.Name = "tableTypeName"; attribute2.FixedValue = "ProjectsPartDataTable"; type.Attributes.Add(attribute2); type.Particle = sequence; global::System.Xml.Schema.XmlSchema dsSchema = ds.GetSchemaSerializable(); if (xs.Contains(dsSchema.TargetNamespace)) { global::System.IO.MemoryStream s1 = new global::System.IO.MemoryStream(); global::System.IO.MemoryStream s2 = new global::System.IO.MemoryStream(); try { global::System.Xml.Schema.XmlSchema schema = null; dsSchema.Write(s1); for (global::System.Collections.IEnumerator schemas = xs.Schemas(dsSchema.TargetNamespace).GetEnumerator(); schemas.MoveNext(); ) { schema = ((global::System.Xml.Schema.XmlSchema)(schemas.Current)); s2.SetLength(0); schema.Write(s2); if ((s1.Length == s2.Length)) { s1.Position = 0; s2.Position = 0; for (; ((s1.Position != s1.Length) && (s1.ReadByte() == s2.ReadByte())); ) { ; } if ((s1.Position == s1.Length)) { return type; } } } } finally { if ((s1 != null)) { s1.Close(); } if ((s2 != null)) { s2.Close(); } } } xs.Add(dsSchema); return type; } } /// ///Represents strongly named DataRow class. /// public partial class ProjectsRow : global::System.Data.DataRow { private ProjectsDataTable tableProjects; [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] internal ProjectsRow(global::System.Data.DataRowBuilder rb) : base(rb) { this.tableProjects = ((ProjectsDataTable)(this.Table)); } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public int idx { get { return ((int)(this[this.tableProjects.idxColumn])); } set { this[this.tableProjects.idxColumn] = value; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public int pidx { get { try { return ((int)(this[this.tableProjects.pidxColumn])); } catch (global::System.InvalidCastException e) { throw new global::System.Data.StrongTypingException("\'Projects\' 테이블의 \'pidx\' 열의 값이 DBNull입니다.", e); } } set { this[this.tableProjects.pidxColumn] = value; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public string gcode { get { return ((string)(this[this.tableProjects.gcodeColumn])); } set { this[this.tableProjects.gcodeColumn] = value; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public bool isdel { get { try { return ((bool)(this[this.tableProjects.isdelColumn])); } catch (global::System.InvalidCastException e) { throw new global::System.Data.StrongTypingException("\'Projects\' 테이블의 \'isdel\' 열의 값이 DBNull입니다.", e); } } set { this[this.tableProjects.isdelColumn] = value; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public string category { get { try { return ((string)(this[this.tableProjects.categoryColumn])); } catch (global::System.InvalidCastException e) { throw new global::System.Data.StrongTypingException("\'Projects\' 테이블의 \'category\' 열의 값이 DBNull입니다.", e); } } set { this[this.tableProjects.categoryColumn] = value; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public string status { get { try { return ((string)(this[this.tableProjects.statusColumn])); } catch (global::System.InvalidCastException e) { throw new global::System.Data.StrongTypingException("\'Projects\' 테이블의 \'status\' 열의 값이 DBNull입니다.", e); } } set { this[this.tableProjects.statusColumn] = value; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public string asset { get { try { return ((string)(this[this.tableProjects.assetColumn])); } catch (global::System.InvalidCastException e) { throw new global::System.Data.StrongTypingException("\'Projects\' 테이블의 \'asset\' 열의 값이 DBNull입니다.", e); } } set { this[this.tableProjects.assetColumn] = value; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public int level { get { try { return ((int)(this[this.tableProjects.levelColumn])); } catch (global::System.InvalidCastException e) { throw new global::System.Data.StrongTypingException("\'Projects\' 테이블의 \'level\' 열의 값이 DBNull입니다.", e); } } set { this[this.tableProjects.levelColumn] = value; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public int rev { get { try { return ((int)(this[this.tableProjects.revColumn])); } catch (global::System.InvalidCastException e) { throw new global::System.Data.StrongTypingException("\'Projects\' 테이블의 \'rev\' 열의 값이 DBNull입니다.", e); } } set { this[this.tableProjects.revColumn] = value; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public string process { get { try { return ((string)(this[this.tableProjects.processColumn])); } catch (global::System.InvalidCastException e) { throw new global::System.Data.StrongTypingException("\'Projects\' 테이블의 \'process\' 열의 값이 DBNull입니다.", e); } } set { this[this.tableProjects.processColumn] = value; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public string part { get { try { return ((string)(this[this.tableProjects.partColumn])); } catch (global::System.InvalidCastException e) { throw new global::System.Data.StrongTypingException("\'Projects\' 테이블의 \'part\' 열의 값이 DBNull입니다.", e); } } set { this[this.tableProjects.partColumn] = value; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public string pdate { get { try { return ((string)(this[this.tableProjects.pdateColumn])); } catch (global::System.InvalidCastException e) { throw new global::System.Data.StrongTypingException("\'Projects\' 테이블의 \'pdate\' 열의 값이 DBNull입니다.", e); } } set { this[this.tableProjects.pdateColumn] = value; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public string name { get { try { return ((string)(this[this.tableProjects.nameColumn])); } catch (global::System.InvalidCastException e) { throw new global::System.Data.StrongTypingException("\'Projects\' 테이블의 \'name\' 열의 값이 DBNull입니다.", e); } } set { this[this.tableProjects.nameColumn] = value; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public string userManager { get { try { return ((string)(this[this.tableProjects.userManagerColumn])); } catch (global::System.InvalidCastException e) { throw new global::System.Data.StrongTypingException("\'Projects\' 테이블의 \'userManager\' 열의 값이 DBNull입니다.", e); } } set { this[this.tableProjects.userManagerColumn] = value; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public string usermain { get { try { return ((string)(this[this.tableProjects.usermainColumn])); } catch (global::System.InvalidCastException e) { throw new global::System.Data.StrongTypingException("\'Projects\' 테이블의 \'usermain\' 열의 값이 DBNull입니다.", e); } } set { this[this.tableProjects.usermainColumn] = value; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public string usersub { get { try { return ((string)(this[this.tableProjects.usersubColumn])); } catch (global::System.InvalidCastException e) { throw new global::System.Data.StrongTypingException("\'Projects\' 테이블의 \'usersub\' 열의 값이 DBNull입니다.", e); } } set { this[this.tableProjects.usersubColumn] = value; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public string userhw2 { get { try { return ((string)(this[this.tableProjects.userhw2Column])); } catch (global::System.InvalidCastException e) { throw new global::System.Data.StrongTypingException("\'Projects\' 테이블의 \'userhw2\' 열의 값이 DBNull입니다.", e); } } set { this[this.tableProjects.userhw2Column] = value; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public string reqstaff { get { try { return ((string)(this[this.tableProjects.reqstaffColumn])); } catch (global::System.InvalidCastException e) { throw new global::System.Data.StrongTypingException("\'Projects\' 테이블의 \'reqstaff\' 열의 값이 DBNull입니다.", e); } } set { this[this.tableProjects.reqstaffColumn] = value; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public double costo { get { try { return ((double)(this[this.tableProjects.costoColumn])); } catch (global::System.InvalidCastException e) { throw new global::System.Data.StrongTypingException("\'Projects\' 테이블의 \'costo\' 열의 값이 DBNull입니다.", e); } } set { this[this.tableProjects.costoColumn] = value; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public double costn { get { try { return ((double)(this[this.tableProjects.costnColumn])); } catch (global::System.InvalidCastException e) { throw new global::System.Data.StrongTypingException("\'Projects\' 테이블의 \'costn\' 열의 값이 DBNull입니다.", e); } } set { this[this.tableProjects.costnColumn] = value; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public int cnt { get { try { return ((int)(this[this.tableProjects.cntColumn])); } catch (global::System.InvalidCastException e) { throw new global::System.Data.StrongTypingException("\'Projects\' 테이블의 \'cnt\' 열의 값이 DBNull입니다.", e); } } set { this[this.tableProjects.cntColumn] = value; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public string remark_req { get { try { return ((string)(this[this.tableProjects.remark_reqColumn])); } catch (global::System.InvalidCastException e) { throw new global::System.Data.StrongTypingException("\'Projects\' 테이블의 \'remark_req\' 열의 값이 DBNull입니다.", e); } } set { this[this.tableProjects.remark_reqColumn] = value; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public string remark_ans { get { try { return ((string)(this[this.tableProjects.remark_ansColumn])); } catch (global::System.InvalidCastException e) { throw new global::System.Data.StrongTypingException("\'Projects\' 테이블의 \'remark_ans\' 열의 값이 DBNull입니다.", e); } } set { this[this.tableProjects.remark_ansColumn] = value; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public string sdate { get { try { return ((string)(this[this.tableProjects.sdateColumn])); } catch (global::System.InvalidCastException e) { throw new global::System.Data.StrongTypingException("\'Projects\' 테이블의 \'sdate\' 열의 값이 DBNull입니다.", e); } } set { this[this.tableProjects.sdateColumn] = value; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public string ddate { get { try { return ((string)(this[this.tableProjects.ddateColumn])); } catch (global::System.InvalidCastException e) { throw new global::System.Data.StrongTypingException("\'Projects\' 테이블의 \'ddate\' 열의 값이 DBNull입니다.", e); } } set { this[this.tableProjects.ddateColumn] = value; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public string edate { get { try { return ((string)(this[this.tableProjects.edateColumn])); } catch (global::System.InvalidCastException e) { throw new global::System.Data.StrongTypingException("\'Projects\' 테이블의 \'edate\' 열의 값이 DBNull입니다.", e); } } set { this[this.tableProjects.edateColumn] = value; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public string odate { get { try { return ((string)(this[this.tableProjects.odateColumn])); } catch (global::System.InvalidCastException e) { throw new global::System.Data.StrongTypingException("\'Projects\' 테이블의 \'odate\' 열의 값이 DBNull입니다.", e); } } set { this[this.tableProjects.odateColumn] = value; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public string bdate { get { try { return ((string)(this[this.tableProjects.bdateColumn])); } catch (global::System.InvalidCastException e) { throw new global::System.Data.StrongTypingException("\'Projects\' 테이블의 \'bdate\' 열의 값이 DBNull입니다.", e); } } set { this[this.tableProjects.bdateColumn] = value; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public string qdate { get { try { return ((string)(this[this.tableProjects.qdateColumn])); } catch (global::System.InvalidCastException e) { throw new global::System.Data.StrongTypingException("\'Projects\' 테이블의 \'qdate\' 열의 값이 DBNull입니다.", e); } } set { this[this.tableProjects.qdateColumn] = value; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public string cdate { get { try { return ((string)(this[this.tableProjects.cdateColumn])); } catch (global::System.InvalidCastException e) { throw new global::System.Data.StrongTypingException("\'Projects\' 테이블의 \'cdate\' 열의 값이 DBNull입니다.", e); } } set { this[this.tableProjects.cdateColumn] = value; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public int progress { get { try { return ((int)(this[this.tableProjects.progressColumn])); } catch (global::System.InvalidCastException e) { throw new global::System.Data.StrongTypingException("\'Projects\' 테이블의 \'progress\' 열의 값이 DBNull입니다.", e); } } set { this[this.tableProjects.progressColumn] = value; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public string memo { get { try { return ((string)(this[this.tableProjects.memoColumn])); } catch (global::System.InvalidCastException e) { throw new global::System.Data.StrongTypingException("\'Projects\' 테이블의 \'memo\' 열의 값이 DBNull입니다.", e); } } set { this[this.tableProjects.memoColumn] = value; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public string wuid { get { return ((string)(this[this.tableProjects.wuidColumn])); } set { this[this.tableProjects.wuidColumn] = value; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public System.DateTime wdate { get { return ((global::System.DateTime)(this[this.tableProjects.wdateColumn])); } set { this[this.tableProjects.wdateColumn] = value; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public string orderno { get { try { return ((string)(this[this.tableProjects.ordernoColumn])); } catch (global::System.InvalidCastException e) { throw new global::System.Data.StrongTypingException("\'Projects\' 테이블의 \'orderno\' 열의 값이 DBNull입니다.", e); } } set { this[this.tableProjects.ordernoColumn] = value; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public string crdue { get { try { return ((string)(this[this.tableProjects.crdueColumn])); } catch (global::System.InvalidCastException e) { throw new global::System.Data.StrongTypingException("\'Projects\' 테이블의 \'crdue\' 열의 값이 DBNull입니다.", e); } } set { this[this.tableProjects.crdueColumn] = value; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public bool import { get { try { return ((bool)(this[this.tableProjects.importColumn])); } catch (global::System.InvalidCastException e) { throw new global::System.Data.StrongTypingException("\'Projects\' 테이블의 \'import\' 열의 값이 DBNull입니다.", e); } } set { this[this.tableProjects.importColumn] = value; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public string path { get { try { return ((string)(this[this.tableProjects.pathColumn])); } catch (global::System.InvalidCastException e) { throw new global::System.Data.StrongTypingException("\'Projects\' 테이블의 \'path\' 열의 값이 DBNull입니다.", e); } } set { this[this.tableProjects.pathColumn] = value; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public string userprocess { get { try { return ((string)(this[this.tableProjects.userprocessColumn])); } catch (global::System.InvalidCastException e) { throw new global::System.Data.StrongTypingException("\'Projects\' 테이블의 \'userprocess\' 열의 값이 DBNull입니다.", e); } } set { this[this.tableProjects.userprocessColumn] = value; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public string CMP_Background { get { try { return ((string)(this[this.tableProjects.CMP_BackgroundColumn])); } catch (global::System.InvalidCastException e) { throw new global::System.Data.StrongTypingException("\'Projects\' 테이블의 \'CMP_Background\' 열의 값이 DBNull입니다.", e); } } set { this[this.tableProjects.CMP_BackgroundColumn] = value; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public string CMP_Description { get { try { return ((string)(this[this.tableProjects.CMP_DescriptionColumn])); } catch (global::System.InvalidCastException e) { throw new global::System.Data.StrongTypingException("\'Projects\' 테이블의 \'CMP_Description\' 열의 값이 DBNull입니다.", e); } } set { this[this.tableProjects.CMP_DescriptionColumn] = value; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public string CMP_Before { get { try { return ((string)(this[this.tableProjects.CMP_BeforeColumn])); } catch (global::System.InvalidCastException e) { throw new global::System.Data.StrongTypingException("\'Projects\' 테이블의 \'CMP_Before\' 열의 값이 DBNull입니다.", e); } } set { this[this.tableProjects.CMP_BeforeColumn] = value; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public string CMP_After { get { try { return ((string)(this[this.tableProjects.CMP_AfterColumn])); } catch (global::System.InvalidCastException e) { throw new global::System.Data.StrongTypingException("\'Projects\' 테이블의 \'CMP_After\' 열의 값이 DBNull입니다.", e); } } set { this[this.tableProjects.CMP_AfterColumn] = value; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public string CMP_After2 { get { try { return ((string)(this[this.tableProjects.CMP_After2Column])); } catch (global::System.InvalidCastException e) { throw new global::System.Data.StrongTypingException("\'Projects\' 테이블의 \'CMP_After2\' 열의 값이 DBNull입니다.", e); } } set { this[this.tableProjects.CMP_After2Column] = value; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public bool bCost { get { try { return ((bool)(this[this.tableProjects.bCostColumn])); } catch (global::System.InvalidCastException e) { throw new global::System.Data.StrongTypingException("\'Projects\' 테이블의 \'bCost\' 열의 값이 DBNull입니다.", e); } } set { this[this.tableProjects.bCostColumn] = value; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public bool bFanOut { get { try { return ((bool)(this[this.tableProjects.bFanOutColumn])); } catch (global::System.InvalidCastException e) { throw new global::System.Data.StrongTypingException("\'Projects\' 테이블의 \'bFanOut\' 열의 값이 DBNull입니다.", e); } } set { this[this.tableProjects.bFanOutColumn] = value; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public string div { get { try { return ((string)(this[this.tableProjects.divColumn])); } catch (global::System.InvalidCastException e) { throw new global::System.Data.StrongTypingException("\'Projects\' 테이블의 \'div\' 열의 값이 DBNull입니다.", e); } } set { this[this.tableProjects.divColumn] = value; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public string model { get { try { return ((string)(this[this.tableProjects.modelColumn])); } catch (global::System.InvalidCastException e) { throw new global::System.Data.StrongTypingException("\'Projects\' 테이블의 \'model\' 열의 값이 DBNull입니다.", e); } } set { this[this.tableProjects.modelColumn] = value; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public string serial { get { try { return ((string)(this[this.tableProjects.serialColumn])); } catch (global::System.InvalidCastException e) { throw new global::System.Data.StrongTypingException("\'Projects\' 테이블의 \'serial\' 열의 값이 DBNull입니다.", e); } } set { this[this.tableProjects.serialColumn] = value; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public string EB_Site { get { try { return ((string)(this[this.tableProjects.EB_SiteColumn])); } catch (global::System.InvalidCastException e) { throw new global::System.Data.StrongTypingException("\'Projects\' 테이블의 \'EB_Site\' 열의 값이 DBNull입니다.", e); } } set { this[this.tableProjects.EB_SiteColumn] = value; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public string EB_Line { get { try { return ((string)(this[this.tableProjects.EB_LineColumn])); } catch (global::System.InvalidCastException e) { throw new global::System.Data.StrongTypingException("\'Projects\' 테이블의 \'EB_Line\' 열의 값이 DBNull입니다.", e); } } set { this[this.tableProjects.EB_LineColumn] = value; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public string EB_Team { get { try { return ((string)(this[this.tableProjects.EB_TeamColumn])); } catch (global::System.InvalidCastException e) { throw new global::System.Data.StrongTypingException("\'Projects\' 테이블의 \'EB_Team\' 열의 값이 DBNull입니다.", e); } } set { this[this.tableProjects.EB_TeamColumn] = value; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public string EB_Model { get { try { return ((string)(this[this.tableProjects.EB_ModelColumn])); } catch (global::System.InvalidCastException e) { throw new global::System.Data.StrongTypingException("\'Projects\' 테이블의 \'EB_Model\' 열의 값이 DBNull입니다.", e); } } set { this[this.tableProjects.EB_ModelColumn] = value; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public string EB_OutSourceName { get { try { return ((string)(this[this.tableProjects.EB_OutSourceNameColumn])); } catch (global::System.InvalidCastException e) { throw new global::System.Data.StrongTypingException("\'Projects\' 테이블의 \'EB_OutSourceName\' 열의 값이 DBNull입니다.", e); } } set { this[this.tableProjects.EB_OutSourceNameColumn] = value; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public double EB_RepairTime { get { try { return ((double)(this[this.tableProjects.EB_RepairTimeColumn])); } catch (global::System.InvalidCastException e) { throw new global::System.Data.StrongTypingException("\'Projects\' 테이블의 \'EB_RepairTime\' 열의 값이 DBNull입니다.", e); } } set { this[this.tableProjects.EB_RepairTimeColumn] = value; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public double EB_ConstNew { get { try { return ((double)(this[this.tableProjects.EB_ConstNewColumn])); } catch (global::System.InvalidCastException e) { throw new global::System.Data.StrongTypingException("\'Projects\' 테이블의 \'EB_ConstNew\' 열의 값이 DBNull입니다.", e); } } set { this[this.tableProjects.EB_ConstNewColumn] = value; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public string EB_BoardName { get { try { return ((string)(this[this.tableProjects.EB_BoardNameColumn])); } catch (global::System.InvalidCastException e) { throw new global::System.Data.StrongTypingException("\'Projects\' 테이블의 \'EB_BoardName\' 열의 값이 DBNull입니다.", e); } } set { this[this.tableProjects.EB_BoardNameColumn] = value; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public bool bAlert { get { try { return ((bool)(this[this.tableProjects.bAlertColumn])); } catch (global::System.InvalidCastException e) { throw new global::System.Data.StrongTypingException("\'Projects\' 테이블의 \'bAlert\' 열의 값이 DBNull입니다.", e); } } set { this[this.tableProjects.bAlertColumn] = value; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public string championid { get { try { return ((string)(this[this.tableProjects.championidColumn])); } catch (global::System.InvalidCastException e) { throw new global::System.Data.StrongTypingException("\'Projects\' 테이블의 \'championid\' 열의 값이 DBNull입니다.", e); } } set { this[this.tableProjects.championidColumn] = value; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public string designid { get { try { return ((string)(this[this.tableProjects.designidColumn])); } catch (global::System.InvalidCastException e) { throw new global::System.Data.StrongTypingException("\'Projects\' 테이블의 \'designid\' 열의 값이 DBNull입니다.", e); } } set { this[this.tableProjects.designidColumn] = value; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public string assemblyid { get { try { return ((string)(this[this.tableProjects.assemblyidColumn])); } catch (global::System.InvalidCastException e) { throw new global::System.Data.StrongTypingException("\'Projects\' 테이블의 \'assemblyid\' 열의 값이 DBNull입니다.", e); } } set { this[this.tableProjects.assemblyidColumn] = value; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public string epanelid { get { try { return ((string)(this[this.tableProjects.epanelidColumn])); } catch (global::System.InvalidCastException e) { throw new global::System.Data.StrongTypingException("\'Projects\' 테이블의 \'epanelid\' 열의 값이 DBNull입니다.", e); } } set { this[this.tableProjects.epanelidColumn] = value; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public string softwareid { get { try { return ((string)(this[this.tableProjects.softwareidColumn])); } catch (global::System.InvalidCastException e) { throw new global::System.Data.StrongTypingException("\'Projects\' 테이블의 \'softwareid\' 열의 값이 DBNull입니다.", e); } } set { this[this.tableProjects.softwareidColumn] = value; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public string userAssembly { get { try { return ((string)(this[this.tableProjects.userAssemblyColumn])); } catch (global::System.InvalidCastException e) { throw new global::System.Data.StrongTypingException("\'Projects\' 테이블의 \'userAssembly\' 열의 값이 DBNull입니다.", e); } } set { this[this.tableProjects.userAssemblyColumn] = value; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public string ReqLine { get { try { return ((string)(this[this.tableProjects.ReqLineColumn])); } catch (global::System.InvalidCastException e) { throw new global::System.Data.StrongTypingException("\'Projects\' 테이블의 \'ReqLine\' 열의 값이 DBNull입니다.", e); } } set { this[this.tableProjects.ReqLineColumn] = value; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public string ReqSite { get { try { return ((string)(this[this.tableProjects.ReqSiteColumn])); } catch (global::System.InvalidCastException e) { throw new global::System.Data.StrongTypingException("\'Projects\' 테이블의 \'ReqSite\' 열의 값이 DBNull입니다.", e); } } set { this[this.tableProjects.ReqSiteColumn] = value; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public string ReqPackage { get { try { return ((string)(this[this.tableProjects.ReqPackageColumn])); } catch (global::System.InvalidCastException e) { throw new global::System.Data.StrongTypingException("\'Projects\' 테이블의 \'ReqPackage\' 열의 값이 DBNull입니다.", e); } } set { this[this.tableProjects.ReqPackageColumn] = value; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public string ReqPlant { get { try { return ((string)(this[this.tableProjects.ReqPlantColumn])); } catch (global::System.InvalidCastException e) { throw new global::System.Data.StrongTypingException("\'Projects\' 테이블의 \'ReqPlant\' 열의 값이 DBNull입니다.", e); } } set { this[this.tableProjects.ReqPlantColumn] = value; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public int pno { get { try { return ((int)(this[this.tableProjects.pnoColumn])); } catch (global::System.InvalidCastException e) { throw new global::System.Data.StrongTypingException("\'Projects\' 테이블의 \'pno\' 열의 값이 DBNull입니다.", e); } } set { this[this.tableProjects.pnoColumn] = value; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public string kdate { get { try { return ((string)(this[this.tableProjects.kdateColumn])); } catch (global::System.InvalidCastException e) { throw new global::System.Data.StrongTypingException("\'Projects\' 테이블의 \'kdate\' 열의 값이 DBNull입니다.", e); } } set { this[this.tableProjects.kdateColumn] = value; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public int jasmin { get { try { return ((int)(this[this.tableProjects.jasminColumn])); } catch (global::System.InvalidCastException e) { throw new global::System.Data.StrongTypingException("\'Projects\' 테이블의 \'jasmin\' 열의 값이 DBNull입니다.", e); } } set { this[this.tableProjects.jasminColumn] = value; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public double sfi { get { try { return ((double)(this[this.tableProjects.sfiColumn])); } catch (global::System.InvalidCastException e) { throw new global::System.Data.StrongTypingException("\'Projects\' 테이블의 \'sfi\' 열의 값이 DBNull입니다.", e); } } set { this[this.tableProjects.sfiColumn] = value; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public string sfi_type { get { try { return ((string)(this[this.tableProjects.sfi_typeColumn])); } catch (global::System.InvalidCastException e) { throw new global::System.Data.StrongTypingException("\'Projects\' 테이블의 \'sfi_type\' 열의 값이 DBNull입니다.", e); } } set { this[this.tableProjects.sfi_typeColumn] = value; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public double sfi_savetime { get { try { return ((double)(this[this.tableProjects.sfi_savetimeColumn])); } catch (global::System.InvalidCastException e) { throw new global::System.Data.StrongTypingException("\'Projects\' 테이블의 \'sfi_savetime\' 열의 값이 DBNull입니다.", e); } } set { this[this.tableProjects.sfi_savetimeColumn] = value; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public double sfi_savecount { get { try { return ((double)(this[this.tableProjects.sfi_savecountColumn])); } catch (global::System.InvalidCastException e) { throw new global::System.Data.StrongTypingException("\'Projects\' 테이블의 \'sfi_savecount\' 열의 값이 DBNull입니다.", e); } } set { this[this.tableProjects.sfi_savecountColumn] = value; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public double sfi_shiftcount { get { try { return ((double)(this[this.tableProjects.sfi_shiftcountColumn])); } catch (global::System.InvalidCastException e) { throw new global::System.Data.StrongTypingException("\'Projects\' 테이블의 \'sfi_shiftcount\' 열의 값이 DBNull입니다.", e); } } set { this[this.tableProjects.sfi_shiftcountColumn] = value; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public double sfic { get { try { return ((double)(this[this.tableProjects.sficColumn])); } catch (global::System.InvalidCastException e) { throw new global::System.Data.StrongTypingException("\'Projects\' 테이블의 \'sfic\' 열의 값이 DBNull입니다.", e); } } set { this[this.tableProjects.sficColumn] = value; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public bool bHighlight { get { try { return ((bool)(this[this.tableProjects.bHighlightColumn])); } catch (global::System.InvalidCastException e) { throw new global::System.Data.StrongTypingException("\'Projects\' 테이블의 \'bHighlight\' 열의 값이 DBNull입니다.", e); } } set { this[this.tableProjects.bHighlightColumn] = value; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public string effect_tangible { get { try { return ((string)(this[this.tableProjects.effect_tangibleColumn])); } catch (global::System.InvalidCastException e) { throw new global::System.Data.StrongTypingException("\'Projects\' 테이블의 \'effect_tangible\' 열의 값이 DBNull입니다.", e); } } set { this[this.tableProjects.effect_tangibleColumn] = value; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public string effect_intangible { get { try { return ((string)(this[this.tableProjects.effect_intangibleColumn])); } catch (global::System.InvalidCastException e) { throw new global::System.Data.StrongTypingException("\'Projects\' 테이블의 \'effect_intangible\' 열의 값이 DBNull입니다.", e); } } set { this[this.tableProjects.effect_intangibleColumn] = value; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public bool bmajoritem { get { try { return ((bool)(this[this.tableProjects.bmajoritemColumn])); } catch (global::System.InvalidCastException e) { throw new global::System.Data.StrongTypingException("\'Projects\' 테이블의 \'bmajoritem\' 열의 값이 DBNull입니다.", e); } } set { this[this.tableProjects.bmajoritemColumn] = value; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public decimal cramount { get { try { return ((decimal)(this[this.tableProjects.cramountColumn])); } catch (global::System.InvalidCastException e) { throw new global::System.Data.StrongTypingException("\'Projects\' 테이블의 \'cramount\' 열의 값이 DBNull입니다.", e); } } set { this[this.tableProjects.cramountColumn] = value; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public bool IspidxNull() { return this.IsNull(this.tableProjects.pidxColumn); } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public void SetpidxNull() { this[this.tableProjects.pidxColumn] = global::System.Convert.DBNull; } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public bool IsisdelNull() { return this.IsNull(this.tableProjects.isdelColumn); } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public void SetisdelNull() { this[this.tableProjects.isdelColumn] = global::System.Convert.DBNull; } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public bool IscategoryNull() { return this.IsNull(this.tableProjects.categoryColumn); } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public void SetcategoryNull() { this[this.tableProjects.categoryColumn] = global::System.Convert.DBNull; } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public bool IsstatusNull() { return this.IsNull(this.tableProjects.statusColumn); } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public void SetstatusNull() { this[this.tableProjects.statusColumn] = global::System.Convert.DBNull; } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public bool IsassetNull() { return this.IsNull(this.tableProjects.assetColumn); } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public void SetassetNull() { this[this.tableProjects.assetColumn] = global::System.Convert.DBNull; } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public bool IslevelNull() { return this.IsNull(this.tableProjects.levelColumn); } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public void SetlevelNull() { this[this.tableProjects.levelColumn] = global::System.Convert.DBNull; } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public bool IsrevNull() { return this.IsNull(this.tableProjects.revColumn); } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public void SetrevNull() { this[this.tableProjects.revColumn] = global::System.Convert.DBNull; } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public bool IsprocessNull() { return this.IsNull(this.tableProjects.processColumn); } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public void SetprocessNull() { this[this.tableProjects.processColumn] = global::System.Convert.DBNull; } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public bool IspartNull() { return this.IsNull(this.tableProjects.partColumn); } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public void SetpartNull() { this[this.tableProjects.partColumn] = global::System.Convert.DBNull; } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public bool IspdateNull() { return this.IsNull(this.tableProjects.pdateColumn); } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public void SetpdateNull() { this[this.tableProjects.pdateColumn] = global::System.Convert.DBNull; } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public bool IsnameNull() { return this.IsNull(this.tableProjects.nameColumn); } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public void SetnameNull() { this[this.tableProjects.nameColumn] = global::System.Convert.DBNull; } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public bool IsuserManagerNull() { return this.IsNull(this.tableProjects.userManagerColumn); } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public void SetuserManagerNull() { this[this.tableProjects.userManagerColumn] = global::System.Convert.DBNull; } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public bool IsusermainNull() { return this.IsNull(this.tableProjects.usermainColumn); } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public void SetusermainNull() { this[this.tableProjects.usermainColumn] = global::System.Convert.DBNull; } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public bool IsusersubNull() { return this.IsNull(this.tableProjects.usersubColumn); } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public void SetusersubNull() { this[this.tableProjects.usersubColumn] = global::System.Convert.DBNull; } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public bool Isuserhw2Null() { return this.IsNull(this.tableProjects.userhw2Column); } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public void Setuserhw2Null() { this[this.tableProjects.userhw2Column] = global::System.Convert.DBNull; } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public bool IsreqstaffNull() { return this.IsNull(this.tableProjects.reqstaffColumn); } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public void SetreqstaffNull() { this[this.tableProjects.reqstaffColumn] = global::System.Convert.DBNull; } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public bool IscostoNull() { return this.IsNull(this.tableProjects.costoColumn); } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public void SetcostoNull() { this[this.tableProjects.costoColumn] = global::System.Convert.DBNull; } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public bool IscostnNull() { return this.IsNull(this.tableProjects.costnColumn); } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public void SetcostnNull() { this[this.tableProjects.costnColumn] = global::System.Convert.DBNull; } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public bool IscntNull() { return this.IsNull(this.tableProjects.cntColumn); } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public void SetcntNull() { this[this.tableProjects.cntColumn] = global::System.Convert.DBNull; } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public bool Isremark_reqNull() { return this.IsNull(this.tableProjects.remark_reqColumn); } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public void Setremark_reqNull() { this[this.tableProjects.remark_reqColumn] = global::System.Convert.DBNull; } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public bool Isremark_ansNull() { return this.IsNull(this.tableProjects.remark_ansColumn); } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public void Setremark_ansNull() { this[this.tableProjects.remark_ansColumn] = global::System.Convert.DBNull; } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public bool IssdateNull() { return this.IsNull(this.tableProjects.sdateColumn); } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public void SetsdateNull() { this[this.tableProjects.sdateColumn] = global::System.Convert.DBNull; } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public bool IsddateNull() { return this.IsNull(this.tableProjects.ddateColumn); } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public void SetddateNull() { this[this.tableProjects.ddateColumn] = global::System.Convert.DBNull; } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public bool IsedateNull() { return this.IsNull(this.tableProjects.edateColumn); } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public void SetedateNull() { this[this.tableProjects.edateColumn] = global::System.Convert.DBNull; } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public bool IsodateNull() { return this.IsNull(this.tableProjects.odateColumn); } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public void SetodateNull() { this[this.tableProjects.odateColumn] = global::System.Convert.DBNull; } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public bool IsbdateNull() { return this.IsNull(this.tableProjects.bdateColumn); } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public void SetbdateNull() { this[this.tableProjects.bdateColumn] = global::System.Convert.DBNull; } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public bool IsqdateNull() { return this.IsNull(this.tableProjects.qdateColumn); } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public void SetqdateNull() { this[this.tableProjects.qdateColumn] = global::System.Convert.DBNull; } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public bool IscdateNull() { return this.IsNull(this.tableProjects.cdateColumn); } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public void SetcdateNull() { this[this.tableProjects.cdateColumn] = global::System.Convert.DBNull; } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public bool IsprogressNull() { return this.IsNull(this.tableProjects.progressColumn); } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public void SetprogressNull() { this[this.tableProjects.progressColumn] = global::System.Convert.DBNull; } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public bool IsmemoNull() { return this.IsNull(this.tableProjects.memoColumn); } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public void SetmemoNull() { this[this.tableProjects.memoColumn] = global::System.Convert.DBNull; } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public bool IsordernoNull() { return this.IsNull(this.tableProjects.ordernoColumn); } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public void SetordernoNull() { this[this.tableProjects.ordernoColumn] = global::System.Convert.DBNull; } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public bool IscrdueNull() { return this.IsNull(this.tableProjects.crdueColumn); } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public void SetcrdueNull() { this[this.tableProjects.crdueColumn] = global::System.Convert.DBNull; } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public bool IsimportNull() { return this.IsNull(this.tableProjects.importColumn); } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public void SetimportNull() { this[this.tableProjects.importColumn] = global::System.Convert.DBNull; } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public bool IspathNull() { return this.IsNull(this.tableProjects.pathColumn); } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public void SetpathNull() { this[this.tableProjects.pathColumn] = global::System.Convert.DBNull; } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public bool IsuserprocessNull() { return this.IsNull(this.tableProjects.userprocessColumn); } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public void SetuserprocessNull() { this[this.tableProjects.userprocessColumn] = global::System.Convert.DBNull; } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public bool IsCMP_BackgroundNull() { return this.IsNull(this.tableProjects.CMP_BackgroundColumn); } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public void SetCMP_BackgroundNull() { this[this.tableProjects.CMP_BackgroundColumn] = global::System.Convert.DBNull; } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public bool IsCMP_DescriptionNull() { return this.IsNull(this.tableProjects.CMP_DescriptionColumn); } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public void SetCMP_DescriptionNull() { this[this.tableProjects.CMP_DescriptionColumn] = global::System.Convert.DBNull; } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public bool IsCMP_BeforeNull() { return this.IsNull(this.tableProjects.CMP_BeforeColumn); } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public void SetCMP_BeforeNull() { this[this.tableProjects.CMP_BeforeColumn] = global::System.Convert.DBNull; } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public bool IsCMP_AfterNull() { return this.IsNull(this.tableProjects.CMP_AfterColumn); } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public void SetCMP_AfterNull() { this[this.tableProjects.CMP_AfterColumn] = global::System.Convert.DBNull; } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public bool IsCMP_After2Null() { return this.IsNull(this.tableProjects.CMP_After2Column); } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public void SetCMP_After2Null() { this[this.tableProjects.CMP_After2Column] = global::System.Convert.DBNull; } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public bool IsbCostNull() { return this.IsNull(this.tableProjects.bCostColumn); } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public void SetbCostNull() { this[this.tableProjects.bCostColumn] = global::System.Convert.DBNull; } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public bool IsbFanOutNull() { return this.IsNull(this.tableProjects.bFanOutColumn); } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public void SetbFanOutNull() { this[this.tableProjects.bFanOutColumn] = global::System.Convert.DBNull; } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public bool IsdivNull() { return this.IsNull(this.tableProjects.divColumn); } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public void SetdivNull() { this[this.tableProjects.divColumn] = global::System.Convert.DBNull; } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public bool IsmodelNull() { return this.IsNull(this.tableProjects.modelColumn); } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public void SetmodelNull() { this[this.tableProjects.modelColumn] = global::System.Convert.DBNull; } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public bool IsserialNull() { return this.IsNull(this.tableProjects.serialColumn); } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public void SetserialNull() { this[this.tableProjects.serialColumn] = global::System.Convert.DBNull; } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public bool IsEB_SiteNull() { return this.IsNull(this.tableProjects.EB_SiteColumn); } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public void SetEB_SiteNull() { this[this.tableProjects.EB_SiteColumn] = global::System.Convert.DBNull; } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public bool IsEB_LineNull() { return this.IsNull(this.tableProjects.EB_LineColumn); } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public void SetEB_LineNull() { this[this.tableProjects.EB_LineColumn] = global::System.Convert.DBNull; } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public bool IsEB_TeamNull() { return this.IsNull(this.tableProjects.EB_TeamColumn); } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public void SetEB_TeamNull() { this[this.tableProjects.EB_TeamColumn] = global::System.Convert.DBNull; } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public bool IsEB_ModelNull() { return this.IsNull(this.tableProjects.EB_ModelColumn); } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public void SetEB_ModelNull() { this[this.tableProjects.EB_ModelColumn] = global::System.Convert.DBNull; } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public bool IsEB_OutSourceNameNull() { return this.IsNull(this.tableProjects.EB_OutSourceNameColumn); } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public void SetEB_OutSourceNameNull() { this[this.tableProjects.EB_OutSourceNameColumn] = global::System.Convert.DBNull; } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public bool IsEB_RepairTimeNull() { return this.IsNull(this.tableProjects.EB_RepairTimeColumn); } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public void SetEB_RepairTimeNull() { this[this.tableProjects.EB_RepairTimeColumn] = global::System.Convert.DBNull; } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public bool IsEB_ConstNewNull() { return this.IsNull(this.tableProjects.EB_ConstNewColumn); } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public void SetEB_ConstNewNull() { this[this.tableProjects.EB_ConstNewColumn] = global::System.Convert.DBNull; } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public bool IsEB_BoardNameNull() { return this.IsNull(this.tableProjects.EB_BoardNameColumn); } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public void SetEB_BoardNameNull() { this[this.tableProjects.EB_BoardNameColumn] = global::System.Convert.DBNull; } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public bool IsbAlertNull() { return this.IsNull(this.tableProjects.bAlertColumn); } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public void SetbAlertNull() { this[this.tableProjects.bAlertColumn] = global::System.Convert.DBNull; } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public bool IschampionidNull() { return this.IsNull(this.tableProjects.championidColumn); } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public void SetchampionidNull() { this[this.tableProjects.championidColumn] = global::System.Convert.DBNull; } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public bool IsdesignidNull() { return this.IsNull(this.tableProjects.designidColumn); } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public void SetdesignidNull() { this[this.tableProjects.designidColumn] = global::System.Convert.DBNull; } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public bool IsassemblyidNull() { return this.IsNull(this.tableProjects.assemblyidColumn); } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public void SetassemblyidNull() { this[this.tableProjects.assemblyidColumn] = global::System.Convert.DBNull; } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public bool IsepanelidNull() { return this.IsNull(this.tableProjects.epanelidColumn); } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public void SetepanelidNull() { this[this.tableProjects.epanelidColumn] = global::System.Convert.DBNull; } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public bool IssoftwareidNull() { return this.IsNull(this.tableProjects.softwareidColumn); } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public void SetsoftwareidNull() { this[this.tableProjects.softwareidColumn] = global::System.Convert.DBNull; } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public bool IsuserAssemblyNull() { return this.IsNull(this.tableProjects.userAssemblyColumn); } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public void SetuserAssemblyNull() { this[this.tableProjects.userAssemblyColumn] = global::System.Convert.DBNull; } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public bool IsReqLineNull() { return this.IsNull(this.tableProjects.ReqLineColumn); } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public void SetReqLineNull() { this[this.tableProjects.ReqLineColumn] = global::System.Convert.DBNull; } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public bool IsReqSiteNull() { return this.IsNull(this.tableProjects.ReqSiteColumn); } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public void SetReqSiteNull() { this[this.tableProjects.ReqSiteColumn] = global::System.Convert.DBNull; } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public bool IsReqPackageNull() { return this.IsNull(this.tableProjects.ReqPackageColumn); } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public void SetReqPackageNull() { this[this.tableProjects.ReqPackageColumn] = global::System.Convert.DBNull; } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public bool IsReqPlantNull() { return this.IsNull(this.tableProjects.ReqPlantColumn); } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public void SetReqPlantNull() { this[this.tableProjects.ReqPlantColumn] = global::System.Convert.DBNull; } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public bool IspnoNull() { return this.IsNull(this.tableProjects.pnoColumn); } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public void SetpnoNull() { this[this.tableProjects.pnoColumn] = global::System.Convert.DBNull; } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public bool IskdateNull() { return this.IsNull(this.tableProjects.kdateColumn); } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public void SetkdateNull() { this[this.tableProjects.kdateColumn] = global::System.Convert.DBNull; } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public bool IsjasminNull() { return this.IsNull(this.tableProjects.jasminColumn); } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public void SetjasminNull() { this[this.tableProjects.jasminColumn] = global::System.Convert.DBNull; } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public bool IssfiNull() { return this.IsNull(this.tableProjects.sfiColumn); } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public void SetsfiNull() { this[this.tableProjects.sfiColumn] = global::System.Convert.DBNull; } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public bool Issfi_typeNull() { return this.IsNull(this.tableProjects.sfi_typeColumn); } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public void Setsfi_typeNull() { this[this.tableProjects.sfi_typeColumn] = global::System.Convert.DBNull; } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public bool Issfi_savetimeNull() { return this.IsNull(this.tableProjects.sfi_savetimeColumn); } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public void Setsfi_savetimeNull() { this[this.tableProjects.sfi_savetimeColumn] = global::System.Convert.DBNull; } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public bool Issfi_savecountNull() { return this.IsNull(this.tableProjects.sfi_savecountColumn); } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public void Setsfi_savecountNull() { this[this.tableProjects.sfi_savecountColumn] = global::System.Convert.DBNull; } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public bool Issfi_shiftcountNull() { return this.IsNull(this.tableProjects.sfi_shiftcountColumn); } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public void Setsfi_shiftcountNull() { this[this.tableProjects.sfi_shiftcountColumn] = global::System.Convert.DBNull; } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public bool IssficNull() { return this.IsNull(this.tableProjects.sficColumn); } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public void SetsficNull() { this[this.tableProjects.sficColumn] = global::System.Convert.DBNull; } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public bool IsbHighlightNull() { return this.IsNull(this.tableProjects.bHighlightColumn); } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public void SetbHighlightNull() { this[this.tableProjects.bHighlightColumn] = global::System.Convert.DBNull; } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public bool Iseffect_tangibleNull() { return this.IsNull(this.tableProjects.effect_tangibleColumn); } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public void Seteffect_tangibleNull() { this[this.tableProjects.effect_tangibleColumn] = global::System.Convert.DBNull; } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public bool Iseffect_intangibleNull() { return this.IsNull(this.tableProjects.effect_intangibleColumn); } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public void Seteffect_intangibleNull() { this[this.tableProjects.effect_intangibleColumn] = global::System.Convert.DBNull; } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public bool IsbmajoritemNull() { return this.IsNull(this.tableProjects.bmajoritemColumn); } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public void SetbmajoritemNull() { this[this.tableProjects.bmajoritemColumn] = global::System.Convert.DBNull; } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public bool IscramountNull() { return this.IsNull(this.tableProjects.cramountColumn); } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public void SetcramountNull() { this[this.tableProjects.cramountColumn] = global::System.Convert.DBNull; } } /// ///Represents strongly named DataRow class. /// public partial class EETGW_ProjectsScheduleRow : global::System.Data.DataRow { private EETGW_ProjectsScheduleDataTable tableEETGW_ProjectsSchedule; [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] internal EETGW_ProjectsScheduleRow(global::System.Data.DataRowBuilder rb) : base(rb) { this.tableEETGW_ProjectsSchedule = ((EETGW_ProjectsScheduleDataTable)(this.Table)); } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public int idx { get { return ((int)(this[this.tableEETGW_ProjectsSchedule.idxColumn])); } set { this[this.tableEETGW_ProjectsSchedule.idxColumn] = value; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public string gcode { get { try { return ((string)(this[this.tableEETGW_ProjectsSchedule.gcodeColumn])); } catch (global::System.InvalidCastException e) { throw new global::System.Data.StrongTypingException("\'EETGW_ProjectsSchedule\' 테이블의 \'gcode\' 열의 값이 DBNull입니다.", e); } } set { this[this.tableEETGW_ProjectsSchedule.gcodeColumn] = value; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public int project { get { try { return ((int)(this[this.tableEETGW_ProjectsSchedule.projectColumn])); } catch (global::System.InvalidCastException e) { throw new global::System.Data.StrongTypingException("\'EETGW_ProjectsSchedule\' 테이블의 \'project\' 열의 값이 DBNull입니다.", e); } } set { this[this.tableEETGW_ProjectsSchedule.projectColumn] = value; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public int no { get { try { return ((int)(this[this.tableEETGW_ProjectsSchedule.noColumn])); } catch (global::System.InvalidCastException e) { throw new global::System.Data.StrongTypingException("\'EETGW_ProjectsSchedule\' 테이블의 \'no\' 열의 값이 DBNull입니다.", e); } } set { this[this.tableEETGW_ProjectsSchedule.noColumn] = value; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public int seq { get { try { return ((int)(this[this.tableEETGW_ProjectsSchedule.seqColumn])); } catch (global::System.InvalidCastException e) { throw new global::System.Data.StrongTypingException("\'EETGW_ProjectsSchedule\' 테이블의 \'seq\' 열의 값이 DBNull입니다.", e); } } set { this[this.tableEETGW_ProjectsSchedule.seqColumn] = value; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public string title { get { try { return ((string)(this[this.tableEETGW_ProjectsSchedule.titleColumn])); } catch (global::System.InvalidCastException e) { throw new global::System.Data.StrongTypingException("\'EETGW_ProjectsSchedule\' 테이블의 \'title\' 열의 값이 DBNull입니다.", e); } } set { this[this.tableEETGW_ProjectsSchedule.titleColumn] = value; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public string cate { get { try { return ((string)(this[this.tableEETGW_ProjectsSchedule.cateColumn])); } catch (global::System.InvalidCastException e) { throw new global::System.Data.StrongTypingException("\'EETGW_ProjectsSchedule\' 테이블의 \'cate\' 열의 값이 DBNull입니다.", e); } } set { this[this.tableEETGW_ProjectsSchedule.cateColumn] = value; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public string sw { get { try { return ((string)(this[this.tableEETGW_ProjectsSchedule.swColumn])); } catch (global::System.InvalidCastException e) { throw new global::System.Data.StrongTypingException("\'EETGW_ProjectsSchedule\' 테이블의 \'sw\' 열의 값이 DBNull입니다.", e); } } set { this[this.tableEETGW_ProjectsSchedule.swColumn] = value; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public string ew { get { try { return ((string)(this[this.tableEETGW_ProjectsSchedule.ewColumn])); } catch (global::System.InvalidCastException e) { throw new global::System.Data.StrongTypingException("\'EETGW_ProjectsSchedule\' 테이블의 \'ew\' 열의 값이 DBNull입니다.", e); } } set { this[this.tableEETGW_ProjectsSchedule.ewColumn] = value; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public string swa { get { try { return ((string)(this[this.tableEETGW_ProjectsSchedule.swaColumn])); } catch (global::System.InvalidCastException e) { throw new global::System.Data.StrongTypingException("\'EETGW_ProjectsSchedule\' 테이블의 \'swa\' 열의 값이 DBNull입니다.", e); } } set { this[this.tableEETGW_ProjectsSchedule.swaColumn] = value; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public string ewa { get { try { return ((string)(this[this.tableEETGW_ProjectsSchedule.ewaColumn])); } catch (global::System.InvalidCastException e) { throw new global::System.Data.StrongTypingException("\'EETGW_ProjectsSchedule\' 테이블의 \'ewa\' 열의 값이 DBNull입니다.", e); } } set { this[this.tableEETGW_ProjectsSchedule.ewaColumn] = value; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public string uid { get { try { return ((string)(this[this.tableEETGW_ProjectsSchedule.uidColumn])); } catch (global::System.InvalidCastException e) { throw new global::System.Data.StrongTypingException("\'EETGW_ProjectsSchedule\' 테이블의 \'uid\' 열의 값이 DBNull입니다.", e); } } set { this[this.tableEETGW_ProjectsSchedule.uidColumn] = value; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public string memo { get { try { return ((string)(this[this.tableEETGW_ProjectsSchedule.memoColumn])); } catch (global::System.InvalidCastException e) { throw new global::System.Data.StrongTypingException("\'EETGW_ProjectsSchedule\' 테이블의 \'memo\' 열의 값이 DBNull입니다.", e); } } set { this[this.tableEETGW_ProjectsSchedule.memoColumn] = value; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public int appoval { get { try { return ((int)(this[this.tableEETGW_ProjectsSchedule.appovalColumn])); } catch (global::System.InvalidCastException e) { throw new global::System.Data.StrongTypingException("\'EETGW_ProjectsSchedule\' 테이블의 \'appoval\' 열의 값이 DBNull입니다.", e); } } set { this[this.tableEETGW_ProjectsSchedule.appovalColumn] = value; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public int progress { get { try { return ((int)(this[this.tableEETGW_ProjectsSchedule.progressColumn])); } catch (global::System.InvalidCastException e) { throw new global::System.Data.StrongTypingException("\'EETGW_ProjectsSchedule\' 테이블의 \'progress\' 열의 값이 DBNull입니다.", e); } } set { this[this.tableEETGW_ProjectsSchedule.progressColumn] = value; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public string wuid { get { return ((string)(this[this.tableEETGW_ProjectsSchedule.wuidColumn])); } set { this[this.tableEETGW_ProjectsSchedule.wuidColumn] = value; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public System.DateTime wdate { get { return ((global::System.DateTime)(this[this.tableEETGW_ProjectsSchedule.wdateColumn])); } set { this[this.tableEETGW_ProjectsSchedule.wdateColumn] = value; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public bool complete { get { try { return ((bool)(this[this.tableEETGW_ProjectsSchedule.completeColumn])); } catch (global::System.InvalidCastException e) { throw new global::System.Data.StrongTypingException("\'EETGW_ProjectsSchedule\' 테이블의 \'complete\' 열의 값이 DBNull입니다.", e); } } set { this[this.tableEETGW_ProjectsSchedule.completeColumn] = value; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public string uidname { get { try { return ((string)(this[this.tableEETGW_ProjectsSchedule.uidnameColumn])); } catch (global::System.InvalidCastException e) { throw new global::System.Data.StrongTypingException("\'EETGW_ProjectsSchedule\' 테이블의 \'uidname\' 열의 값이 DBNull입니다.", e); } } set { this[this.tableEETGW_ProjectsSchedule.uidnameColumn] = value; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public bool IsgcodeNull() { return this.IsNull(this.tableEETGW_ProjectsSchedule.gcodeColumn); } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public void SetgcodeNull() { this[this.tableEETGW_ProjectsSchedule.gcodeColumn] = global::System.Convert.DBNull; } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public bool IsprojectNull() { return this.IsNull(this.tableEETGW_ProjectsSchedule.projectColumn); } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public void SetprojectNull() { this[this.tableEETGW_ProjectsSchedule.projectColumn] = global::System.Convert.DBNull; } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public bool IsnoNull() { return this.IsNull(this.tableEETGW_ProjectsSchedule.noColumn); } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public void SetnoNull() { this[this.tableEETGW_ProjectsSchedule.noColumn] = global::System.Convert.DBNull; } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public bool IsseqNull() { return this.IsNull(this.tableEETGW_ProjectsSchedule.seqColumn); } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public void SetseqNull() { this[this.tableEETGW_ProjectsSchedule.seqColumn] = global::System.Convert.DBNull; } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public bool IstitleNull() { return this.IsNull(this.tableEETGW_ProjectsSchedule.titleColumn); } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public void SettitleNull() { this[this.tableEETGW_ProjectsSchedule.titleColumn] = global::System.Convert.DBNull; } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public bool IscateNull() { return this.IsNull(this.tableEETGW_ProjectsSchedule.cateColumn); } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public void SetcateNull() { this[this.tableEETGW_ProjectsSchedule.cateColumn] = global::System.Convert.DBNull; } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public bool IsswNull() { return this.IsNull(this.tableEETGW_ProjectsSchedule.swColumn); } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public void SetswNull() { this[this.tableEETGW_ProjectsSchedule.swColumn] = global::System.Convert.DBNull; } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public bool IsewNull() { return this.IsNull(this.tableEETGW_ProjectsSchedule.ewColumn); } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public void SetewNull() { this[this.tableEETGW_ProjectsSchedule.ewColumn] = global::System.Convert.DBNull; } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public bool IsswaNull() { return this.IsNull(this.tableEETGW_ProjectsSchedule.swaColumn); } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public void SetswaNull() { this[this.tableEETGW_ProjectsSchedule.swaColumn] = global::System.Convert.DBNull; } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public bool IsewaNull() { return this.IsNull(this.tableEETGW_ProjectsSchedule.ewaColumn); } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public void SetewaNull() { this[this.tableEETGW_ProjectsSchedule.ewaColumn] = global::System.Convert.DBNull; } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public bool IsuidNull() { return this.IsNull(this.tableEETGW_ProjectsSchedule.uidColumn); } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public void SetuidNull() { this[this.tableEETGW_ProjectsSchedule.uidColumn] = global::System.Convert.DBNull; } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public bool IsmemoNull() { return this.IsNull(this.tableEETGW_ProjectsSchedule.memoColumn); } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public void SetmemoNull() { this[this.tableEETGW_ProjectsSchedule.memoColumn] = global::System.Convert.DBNull; } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public bool IsappovalNull() { return this.IsNull(this.tableEETGW_ProjectsSchedule.appovalColumn); } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public void SetappovalNull() { this[this.tableEETGW_ProjectsSchedule.appovalColumn] = global::System.Convert.DBNull; } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public bool IsprogressNull() { return this.IsNull(this.tableEETGW_ProjectsSchedule.progressColumn); } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public void SetprogressNull() { this[this.tableEETGW_ProjectsSchedule.progressColumn] = global::System.Convert.DBNull; } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public bool IscompleteNull() { return this.IsNull(this.tableEETGW_ProjectsSchedule.completeColumn); } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public void SetcompleteNull() { this[this.tableEETGW_ProjectsSchedule.completeColumn] = global::System.Convert.DBNull; } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public bool IsuidnameNull() { return this.IsNull(this.tableEETGW_ProjectsSchedule.uidnameColumn); } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public void SetuidnameNull() { this[this.tableEETGW_ProjectsSchedule.uidnameColumn] = global::System.Convert.DBNull; } } /// ///Represents strongly named DataRow class. /// public partial class ProjectsPartRow : global::System.Data.DataRow { private ProjectsPartDataTable tableProjectsPart; [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] internal ProjectsPartRow(global::System.Data.DataRowBuilder rb) : base(rb) { this.tableProjectsPart = ((ProjectsPartDataTable)(this.Table)); } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public int idx { get { return ((int)(this[this.tableProjectsPart.idxColumn])); } set { this[this.tableProjectsPart.idxColumn] = value; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public int no { get { try { return ((int)(this[this.tableProjectsPart.noColumn])); } catch (global::System.InvalidCastException e) { throw new global::System.Data.StrongTypingException("\'ProjectsPart\' 테이블의 \'no\' 열의 값이 DBNull입니다.", e); } } set { this[this.tableProjectsPart.noColumn] = value; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public int Project { get { try { return ((int)(this[this.tableProjectsPart.ProjectColumn])); } catch (global::System.InvalidCastException e) { throw new global::System.Data.StrongTypingException("\'ProjectsPart\' 테이블의 \'Project\' 열의 값이 DBNull입니다.", e); } } set { this[this.tableProjectsPart.ProjectColumn] = value; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public string ItemGroup { get { try { return ((string)(this[this.tableProjectsPart.ItemGroupColumn])); } catch (global::System.InvalidCastException e) { throw new global::System.Data.StrongTypingException("\'ProjectsPart\' 테이블의 \'ItemGroup\' 열의 값이 DBNull입니다.", e); } } set { this[this.tableProjectsPart.ItemGroupColumn] = value; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public string ItemModel { get { try { return ((string)(this[this.tableProjectsPart.ItemModelColumn])); } catch (global::System.InvalidCastException e) { throw new global::System.Data.StrongTypingException("\'ProjectsPart\' 테이블의 \'ItemModel\' 열의 값이 DBNull입니다.", e); } } set { this[this.tableProjectsPart.ItemModelColumn] = value; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public string ItemUnit { get { try { return ((string)(this[this.tableProjectsPart.ItemUnitColumn])); } catch (global::System.InvalidCastException e) { throw new global::System.Data.StrongTypingException("\'ProjectsPart\' 테이블의 \'ItemUnit\' 열의 값이 DBNull입니다.", e); } } set { this[this.tableProjectsPart.ItemUnitColumn] = value; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public string ItemName { get { try { return ((string)(this[this.tableProjectsPart.ItemNameColumn])); } catch (global::System.InvalidCastException e) { throw new global::System.Data.StrongTypingException("\'ProjectsPart\' 테이블의 \'ItemName\' 열의 값이 DBNull입니다.", e); } } set { this[this.tableProjectsPart.ItemNameColumn] = value; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public string ItemSid { get { try { return ((string)(this[this.tableProjectsPart.ItemSidColumn])); } catch (global::System.InvalidCastException e) { throw new global::System.Data.StrongTypingException("\'ProjectsPart\' 테이블의 \'ItemSid\' 열의 값이 DBNull입니다.", e); } } set { this[this.tableProjectsPart.ItemSidColumn] = value; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public string ItemSupply { get { try { return ((string)(this[this.tableProjectsPart.ItemSupplyColumn])); } catch (global::System.InvalidCastException e) { throw new global::System.Data.StrongTypingException("\'ProjectsPart\' 테이블의 \'ItemSupply\' 열의 값이 DBNull입니다.", e); } } set { this[this.tableProjectsPart.ItemSupplyColumn] = value; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public int ItemSupplyidx { get { try { return ((int)(this[this.tableProjectsPart.ItemSupplyidxColumn])); } catch (global::System.InvalidCastException e) { throw new global::System.Data.StrongTypingException("\'ProjectsPart\' 테이블의 \'ItemSupplyidx\' 열의 값이 DBNull입니다.", e); } } set { this[this.tableProjectsPart.ItemSupplyidxColumn] = value; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public string ItemManu { get { try { return ((string)(this[this.tableProjectsPart.ItemManuColumn])); } catch (global::System.InvalidCastException e) { throw new global::System.Data.StrongTypingException("\'ProjectsPart\' 테이블의 \'ItemManu\' 열의 값이 DBNull입니다.", e); } } set { this[this.tableProjectsPart.ItemManuColumn] = value; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public int Item { get { try { return ((int)(this[this.tableProjectsPart.ItemColumn])); } catch (global::System.InvalidCastException e) { throw new global::System.Data.StrongTypingException("\'ProjectsPart\' 테이블의 \'Item\' 열의 값이 DBNull입니다.", e); } } set { this[this.tableProjectsPart.ItemColumn] = value; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public string option1 { get { try { return ((string)(this[this.tableProjectsPart.option1Column])); } catch (global::System.InvalidCastException e) { throw new global::System.Data.StrongTypingException("\'ProjectsPart\' 테이블의 \'option1\' 열의 값이 DBNull입니다.", e); } } set { this[this.tableProjectsPart.option1Column] = value; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public string option2 { get { try { return ((string)(this[this.tableProjectsPart.option2Column])); } catch (global::System.InvalidCastException e) { throw new global::System.Data.StrongTypingException("\'ProjectsPart\' 테이블의 \'option2\' 열의 값이 DBNull입니다.", e); } } set { this[this.tableProjectsPart.option2Column] = value; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public string option3 { get { try { return ((string)(this[this.tableProjectsPart.option3Column])); } catch (global::System.InvalidCastException e) { throw new global::System.Data.StrongTypingException("\'ProjectsPart\' 테이블의 \'option3\' 열의 값이 DBNull입니다.", e); } } set { this[this.tableProjectsPart.option3Column] = value; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public int qty { get { try { return ((int)(this[this.tableProjectsPart.qtyColumn])); } catch (global::System.InvalidCastException e) { throw new global::System.Data.StrongTypingException("\'ProjectsPart\' 테이블의 \'qty\' 열의 값이 DBNull입니다.", e); } } set { this[this.tableProjectsPart.qtyColumn] = value; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public int qtyn { get { try { return ((int)(this[this.tableProjectsPart.qtynColumn])); } catch (global::System.InvalidCastException e) { throw new global::System.Data.StrongTypingException("\'ProjectsPart\' 테이블의 \'qtyn\' 열의 값이 DBNull입니다.", e); } } set { this[this.tableProjectsPart.qtynColumn] = value; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public decimal price { get { try { return ((decimal)(this[this.tableProjectsPart.priceColumn])); } catch (global::System.InvalidCastException e) { throw new global::System.Data.StrongTypingException("\'ProjectsPart\' 테이블의 \'price\' 열의 값이 DBNull입니다.", e); } } set { this[this.tableProjectsPart.priceColumn] = value; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public decimal priceD { get { try { return ((decimal)(this[this.tableProjectsPart.priceDColumn])); } catch (global::System.InvalidCastException e) { throw new global::System.Data.StrongTypingException("\'ProjectsPart\' 테이블의 \'priceD\' 열의 값이 DBNull입니다.", e); } } set { this[this.tableProjectsPart.priceDColumn] = value; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public decimal amt { get { try { return ((decimal)(this[this.tableProjectsPart.amtColumn])); } catch (global::System.InvalidCastException e) { throw new global::System.Data.StrongTypingException("\'ProjectsPart\' 테이블의 \'amt\' 열의 값이 DBNull입니다.", e); } } set { this[this.tableProjectsPart.amtColumn] = value; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public decimal amtn { get { try { return ((decimal)(this[this.tableProjectsPart.amtnColumn])); } catch (global::System.InvalidCastException e) { throw new global::System.Data.StrongTypingException("\'ProjectsPart\' 테이블의 \'amtn\' 열의 값이 DBNull입니다.", e); } } set { this[this.tableProjectsPart.amtnColumn] = value; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public int jago { get { try { return ((int)(this[this.tableProjectsPart.jagoColumn])); } catch (global::System.InvalidCastException e) { throw new global::System.Data.StrongTypingException("\'ProjectsPart\' 테이블의 \'jago\' 열의 값이 DBNull입니다.", e); } } set { this[this.tableProjectsPart.jagoColumn] = value; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public string remark { get { try { return ((string)(this[this.tableProjectsPart.remarkColumn])); } catch (global::System.InvalidCastException e) { throw new global::System.Data.StrongTypingException("\'ProjectsPart\' 테이블의 \'remark\' 열의 값이 DBNull입니다.", e); } } set { this[this.tableProjectsPart.remarkColumn] = value; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public string memo { get { try { return ((string)(this[this.tableProjectsPart.memoColumn])); } catch (global::System.InvalidCastException e) { throw new global::System.Data.StrongTypingException("\'ProjectsPart\' 테이블의 \'memo\' 열의 값이 DBNull입니다.", e); } } set { this[this.tableProjectsPart.memoColumn] = value; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public string wuid { get { return ((string)(this[this.tableProjectsPart.wuidColumn])); } set { this[this.tableProjectsPart.wuidColumn] = value; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public System.DateTime wdate { get { return ((global::System.DateTime)(this[this.tableProjectsPart.wdateColumn])); } set { this[this.tableProjectsPart.wdateColumn] = value; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public bool import { get { try { return ((bool)(this[this.tableProjectsPart.importColumn])); } catch (global::System.InvalidCastException e) { throw new global::System.Data.StrongTypingException("\'ProjectsPart\' 테이블의 \'import\' 열의 값이 DBNull입니다.", e); } } set { this[this.tableProjectsPart.importColumn] = value; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public string qtyjago { get { try { return ((string)(this[this.tableProjectsPart.qtyjagoColumn])); } catch (global::System.InvalidCastException e) { throw new global::System.Data.StrongTypingException("\'ProjectsPart\' 테이블의 \'qtyjago\' 열의 값이 DBNull입니다.", e); } } set { this[this.tableProjectsPart.qtyjagoColumn] = value; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public int qtybuy { get { try { return ((int)(this[this.tableProjectsPart.qtybuyColumn])); } catch (global::System.InvalidCastException e) { throw new global::System.Data.StrongTypingException("\'ProjectsPart\' 테이블의 \'qtybuy\' 열의 값이 DBNull입니다.", e); } } set { this[this.tableProjectsPart.qtybuyColumn] = value; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public int qtyin { get { try { return ((int)(this[this.tableProjectsPart.qtyinColumn])); } catch (global::System.InvalidCastException e) { throw new global::System.Data.StrongTypingException("\'ProjectsPart\' 테이블의 \'qtyin\' 열의 값이 DBNull입니다.", e); } } set { this[this.tableProjectsPart.qtyinColumn] = value; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public bool bbuy { get { try { return ((bool)(this[this.tableProjectsPart.bbuyColumn])); } catch (global::System.InvalidCastException e) { throw new global::System.Data.StrongTypingException("\'ProjectsPart\' 테이블의 \'bbuy\' 열의 값이 DBNull입니다.", e); } } set { this[this.tableProjectsPart.bbuyColumn] = value; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public bool bconfirm { get { try { return ((bool)(this[this.tableProjectsPart.bconfirmColumn])); } catch (global::System.InvalidCastException e) { throw new global::System.Data.StrongTypingException("\'ProjectsPart\' 테이블의 \'bconfirm\' 열의 값이 DBNull입니다.", e); } } set { this[this.tableProjectsPart.bconfirmColumn] = value; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public bool bCancel { get { try { return ((bool)(this[this.tableProjectsPart.bCancelColumn])); } catch (global::System.InvalidCastException e) { throw new global::System.Data.StrongTypingException("\'ProjectsPart\' 테이블의 \'bCancel\' 열의 값이 DBNull입니다.", e); } } set { this[this.tableProjectsPart.bCancelColumn] = value; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public string reqUser { get { try { return ((string)(this[this.tableProjectsPart.reqUserColumn])); } catch (global::System.InvalidCastException e) { throw new global::System.Data.StrongTypingException("\'ProjectsPart\' 테이블의 \'reqUser\' 열의 값이 DBNull입니다.", e); } } set { this[this.tableProjectsPart.reqUserColumn] = value; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public string recvUser { get { try { return ((string)(this[this.tableProjectsPart.recvUserColumn])); } catch (global::System.InvalidCastException e) { throw new global::System.Data.StrongTypingException("\'ProjectsPart\' 테이블의 \'recvUser\' 열의 값이 DBNull입니다.", e); } } set { this[this.tableProjectsPart.recvUserColumn] = value; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public string recvDate { get { try { return ((string)(this[this.tableProjectsPart.recvDateColumn])); } catch (global::System.InvalidCastException e) { throw new global::System.Data.StrongTypingException("\'ProjectsPart\' 테이블의 \'recvDate\' 열의 값이 DBNull입니다.", e); } } set { this[this.tableProjectsPart.recvDateColumn] = value; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public bool IsnoNull() { return this.IsNull(this.tableProjectsPart.noColumn); } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public void SetnoNull() { this[this.tableProjectsPart.noColumn] = global::System.Convert.DBNull; } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public bool IsProjectNull() { return this.IsNull(this.tableProjectsPart.ProjectColumn); } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public void SetProjectNull() { this[this.tableProjectsPart.ProjectColumn] = global::System.Convert.DBNull; } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public bool IsItemGroupNull() { return this.IsNull(this.tableProjectsPart.ItemGroupColumn); } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public void SetItemGroupNull() { this[this.tableProjectsPart.ItemGroupColumn] = global::System.Convert.DBNull; } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public bool IsItemModelNull() { return this.IsNull(this.tableProjectsPart.ItemModelColumn); } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public void SetItemModelNull() { this[this.tableProjectsPart.ItemModelColumn] = global::System.Convert.DBNull; } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public bool IsItemUnitNull() { return this.IsNull(this.tableProjectsPart.ItemUnitColumn); } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public void SetItemUnitNull() { this[this.tableProjectsPart.ItemUnitColumn] = global::System.Convert.DBNull; } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public bool IsItemNameNull() { return this.IsNull(this.tableProjectsPart.ItemNameColumn); } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public void SetItemNameNull() { this[this.tableProjectsPart.ItemNameColumn] = global::System.Convert.DBNull; } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public bool IsItemSidNull() { return this.IsNull(this.tableProjectsPart.ItemSidColumn); } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public void SetItemSidNull() { this[this.tableProjectsPart.ItemSidColumn] = global::System.Convert.DBNull; } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public bool IsItemSupplyNull() { return this.IsNull(this.tableProjectsPart.ItemSupplyColumn); } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public void SetItemSupplyNull() { this[this.tableProjectsPart.ItemSupplyColumn] = global::System.Convert.DBNull; } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public bool IsItemSupplyidxNull() { return this.IsNull(this.tableProjectsPart.ItemSupplyidxColumn); } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public void SetItemSupplyidxNull() { this[this.tableProjectsPart.ItemSupplyidxColumn] = global::System.Convert.DBNull; } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public bool IsItemManuNull() { return this.IsNull(this.tableProjectsPart.ItemManuColumn); } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public void SetItemManuNull() { this[this.tableProjectsPart.ItemManuColumn] = global::System.Convert.DBNull; } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public bool IsItemNull() { return this.IsNull(this.tableProjectsPart.ItemColumn); } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public void SetItemNull() { this[this.tableProjectsPart.ItemColumn] = global::System.Convert.DBNull; } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public bool Isoption1Null() { return this.IsNull(this.tableProjectsPart.option1Column); } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public void Setoption1Null() { this[this.tableProjectsPart.option1Column] = global::System.Convert.DBNull; } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public bool Isoption2Null() { return this.IsNull(this.tableProjectsPart.option2Column); } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public void Setoption2Null() { this[this.tableProjectsPart.option2Column] = global::System.Convert.DBNull; } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public bool Isoption3Null() { return this.IsNull(this.tableProjectsPart.option3Column); } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public void Setoption3Null() { this[this.tableProjectsPart.option3Column] = global::System.Convert.DBNull; } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public bool IsqtyNull() { return this.IsNull(this.tableProjectsPart.qtyColumn); } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public void SetqtyNull() { this[this.tableProjectsPart.qtyColumn] = global::System.Convert.DBNull; } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public bool IsqtynNull() { return this.IsNull(this.tableProjectsPart.qtynColumn); } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public void SetqtynNull() { this[this.tableProjectsPart.qtynColumn] = global::System.Convert.DBNull; } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public bool IspriceNull() { return this.IsNull(this.tableProjectsPart.priceColumn); } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public void SetpriceNull() { this[this.tableProjectsPart.priceColumn] = global::System.Convert.DBNull; } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public bool IspriceDNull() { return this.IsNull(this.tableProjectsPart.priceDColumn); } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public void SetpriceDNull() { this[this.tableProjectsPart.priceDColumn] = global::System.Convert.DBNull; } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public bool IsamtNull() { return this.IsNull(this.tableProjectsPart.amtColumn); } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public void SetamtNull() { this[this.tableProjectsPart.amtColumn] = global::System.Convert.DBNull; } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public bool IsamtnNull() { return this.IsNull(this.tableProjectsPart.amtnColumn); } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public void SetamtnNull() { this[this.tableProjectsPart.amtnColumn] = global::System.Convert.DBNull; } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public bool IsjagoNull() { return this.IsNull(this.tableProjectsPart.jagoColumn); } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public void SetjagoNull() { this[this.tableProjectsPart.jagoColumn] = global::System.Convert.DBNull; } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public bool IsremarkNull() { return this.IsNull(this.tableProjectsPart.remarkColumn); } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public void SetremarkNull() { this[this.tableProjectsPart.remarkColumn] = global::System.Convert.DBNull; } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public bool IsmemoNull() { return this.IsNull(this.tableProjectsPart.memoColumn); } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public void SetmemoNull() { this[this.tableProjectsPart.memoColumn] = global::System.Convert.DBNull; } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public bool IsimportNull() { return this.IsNull(this.tableProjectsPart.importColumn); } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public void SetimportNull() { this[this.tableProjectsPart.importColumn] = global::System.Convert.DBNull; } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public bool IsqtyjagoNull() { return this.IsNull(this.tableProjectsPart.qtyjagoColumn); } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public void SetqtyjagoNull() { this[this.tableProjectsPart.qtyjagoColumn] = global::System.Convert.DBNull; } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public bool IsqtybuyNull() { return this.IsNull(this.tableProjectsPart.qtybuyColumn); } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public void SetqtybuyNull() { this[this.tableProjectsPart.qtybuyColumn] = global::System.Convert.DBNull; } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public bool IsqtyinNull() { return this.IsNull(this.tableProjectsPart.qtyinColumn); } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public void SetqtyinNull() { this[this.tableProjectsPart.qtyinColumn] = global::System.Convert.DBNull; } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public bool IsbbuyNull() { return this.IsNull(this.tableProjectsPart.bbuyColumn); } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public void SetbbuyNull() { this[this.tableProjectsPart.bbuyColumn] = global::System.Convert.DBNull; } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public bool IsbconfirmNull() { return this.IsNull(this.tableProjectsPart.bconfirmColumn); } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public void SetbconfirmNull() { this[this.tableProjectsPart.bconfirmColumn] = global::System.Convert.DBNull; } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public bool IsbCancelNull() { return this.IsNull(this.tableProjectsPart.bCancelColumn); } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public void SetbCancelNull() { this[this.tableProjectsPart.bCancelColumn] = global::System.Convert.DBNull; } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public bool IsreqUserNull() { return this.IsNull(this.tableProjectsPart.reqUserColumn); } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public void SetreqUserNull() { this[this.tableProjectsPart.reqUserColumn] = global::System.Convert.DBNull; } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public bool IsrecvUserNull() { return this.IsNull(this.tableProjectsPart.recvUserColumn); } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public void SetrecvUserNull() { this[this.tableProjectsPart.recvUserColumn] = global::System.Convert.DBNull; } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public bool IsrecvDateNull() { return this.IsNull(this.tableProjectsPart.recvDateColumn); } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public void SetrecvDateNull() { this[this.tableProjectsPart.recvDateColumn] = global::System.Convert.DBNull; } } /// ///Row event argument class /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public class ProjectsRowChangeEvent : global::System.EventArgs { private ProjectsRow eventRow; private global::System.Data.DataRowAction eventAction; [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public ProjectsRowChangeEvent(ProjectsRow row, global::System.Data.DataRowAction action) { this.eventRow = row; this.eventAction = action; } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public ProjectsRow Row { get { return this.eventRow; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public global::System.Data.DataRowAction Action { get { return this.eventAction; } } } /// ///Row event argument class /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public class EETGW_ProjectsScheduleRowChangeEvent : global::System.EventArgs { private EETGW_ProjectsScheduleRow eventRow; private global::System.Data.DataRowAction eventAction; [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public EETGW_ProjectsScheduleRowChangeEvent(EETGW_ProjectsScheduleRow row, global::System.Data.DataRowAction action) { this.eventRow = row; this.eventAction = action; } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public EETGW_ProjectsScheduleRow Row { get { return this.eventRow; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public global::System.Data.DataRowAction Action { get { return this.eventAction; } } } /// ///Row event argument class /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public class ProjectsPartRowChangeEvent : global::System.EventArgs { private ProjectsPartRow eventRow; private global::System.Data.DataRowAction eventAction; [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public ProjectsPartRowChangeEvent(ProjectsPartRow row, global::System.Data.DataRowAction action) { this.eventRow = row; this.eventAction = action; } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public ProjectsPartRow Row { get { return this.eventRow; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public global::System.Data.DataRowAction Action { get { return this.eventAction; } } } } } namespace Project.dsProjectsTableAdapters { /// ///Represents the connection and commands used to retrieve and save data. /// [global::System.ComponentModel.DesignerCategoryAttribute("code")] [global::System.ComponentModel.ToolboxItem(true)] [global::System.ComponentModel.DataObjectAttribute(true)] [global::System.ComponentModel.DesignerAttribute("Microsoft.VSDesigner.DataSource.Design.TableAdapterDesigner, Microsoft.VSDesigner" + ", Version=10.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a")] [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")] public partial class ProjectsTableAdapter : global::System.ComponentModel.Component { private global::System.Data.SqlClient.SqlDataAdapter _adapter; private global::System.Data.SqlClient.SqlConnection _connection; private global::System.Data.SqlClient.SqlTransaction _transaction; private global::System.Data.SqlClient.SqlCommand[] _commandCollection; private bool _clearBeforeFill; [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public ProjectsTableAdapter() { this.ClearBeforeFill = true; } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] protected internal global::System.Data.SqlClient.SqlDataAdapter Adapter { get { if ((this._adapter == null)) { this.InitAdapter(); } return this._adapter; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] internal global::System.Data.SqlClient.SqlConnection Connection { get { if ((this._connection == null)) { this.InitConnection(); } return this._connection; } set { this._connection = value; if ((this.Adapter.InsertCommand != null)) { this.Adapter.InsertCommand.Connection = value; } if ((this.Adapter.DeleteCommand != null)) { this.Adapter.DeleteCommand.Connection = value; } if ((this.Adapter.UpdateCommand != null)) { this.Adapter.UpdateCommand.Connection = value; } for (int i = 0; (i < this.CommandCollection.Length); i = (i + 1)) { if ((this.CommandCollection[i] != null)) { ((global::System.Data.SqlClient.SqlCommand)(this.CommandCollection[i])).Connection = value; } } } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] internal global::System.Data.SqlClient.SqlTransaction Transaction { get { return this._transaction; } set { this._transaction = value; for (int i = 0; (i < this.CommandCollection.Length); i = (i + 1)) { this.CommandCollection[i].Transaction = this._transaction; } if (((this.Adapter != null) && (this.Adapter.DeleteCommand != null))) { this.Adapter.DeleteCommand.Transaction = this._transaction; } if (((this.Adapter != null) && (this.Adapter.InsertCommand != null))) { this.Adapter.InsertCommand.Transaction = this._transaction; } if (((this.Adapter != null) && (this.Adapter.UpdateCommand != null))) { this.Adapter.UpdateCommand.Transaction = this._transaction; } } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] protected global::System.Data.SqlClient.SqlCommand[] CommandCollection { get { if ((this._commandCollection == null)) { this.InitCommandCollection(); } return this._commandCollection; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public bool ClearBeforeFill { get { return this._clearBeforeFill; } set { this._clearBeforeFill = value; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] private void InitAdapter() { this._adapter = new global::System.Data.SqlClient.SqlDataAdapter(); global::System.Data.Common.DataTableMapping tableMapping = new global::System.Data.Common.DataTableMapping(); tableMapping.SourceTable = "Table"; tableMapping.DataSetTable = "Projects"; tableMapping.ColumnMappings.Add("idx", "idx"); tableMapping.ColumnMappings.Add("pidx", "pidx"); tableMapping.ColumnMappings.Add("gcode", "gcode"); tableMapping.ColumnMappings.Add("isdel", "isdel"); tableMapping.ColumnMappings.Add("category", "category"); tableMapping.ColumnMappings.Add("status", "status"); tableMapping.ColumnMappings.Add("asset", "asset"); tableMapping.ColumnMappings.Add("level", "level"); tableMapping.ColumnMappings.Add("rev", "rev"); tableMapping.ColumnMappings.Add("process", "process"); tableMapping.ColumnMappings.Add("part", "part"); tableMapping.ColumnMappings.Add("pdate", "pdate"); tableMapping.ColumnMappings.Add("name", "name"); tableMapping.ColumnMappings.Add("userManager", "userManager"); tableMapping.ColumnMappings.Add("usermain", "usermain"); tableMapping.ColumnMappings.Add("usersub", "usersub"); tableMapping.ColumnMappings.Add("userhw2", "userhw2"); tableMapping.ColumnMappings.Add("reqstaff", "reqstaff"); tableMapping.ColumnMappings.Add("costo", "costo"); tableMapping.ColumnMappings.Add("costn", "costn"); tableMapping.ColumnMappings.Add("cnt", "cnt"); tableMapping.ColumnMappings.Add("remark_req", "remark_req"); tableMapping.ColumnMappings.Add("remark_ans", "remark_ans"); tableMapping.ColumnMappings.Add("sdate", "sdate"); tableMapping.ColumnMappings.Add("ddate", "ddate"); tableMapping.ColumnMappings.Add("edate", "edate"); tableMapping.ColumnMappings.Add("odate", "odate"); tableMapping.ColumnMappings.Add("bdate", "bdate"); tableMapping.ColumnMappings.Add("qdate", "qdate"); tableMapping.ColumnMappings.Add("cdate", "cdate"); tableMapping.ColumnMappings.Add("progress", "progress"); tableMapping.ColumnMappings.Add("memo", "memo"); tableMapping.ColumnMappings.Add("wuid", "wuid"); tableMapping.ColumnMappings.Add("wdate", "wdate"); tableMapping.ColumnMappings.Add("orderno", "orderno"); tableMapping.ColumnMappings.Add("crdue", "crdue"); tableMapping.ColumnMappings.Add("import", "import"); tableMapping.ColumnMappings.Add("path", "path"); tableMapping.ColumnMappings.Add("userprocess", "userprocess"); tableMapping.ColumnMappings.Add("CMP_Background", "CMP_Background"); tableMapping.ColumnMappings.Add("CMP_Description", "CMP_Description"); tableMapping.ColumnMappings.Add("CMP_Before", "CMP_Before"); tableMapping.ColumnMappings.Add("CMP_After", "CMP_After"); tableMapping.ColumnMappings.Add("CMP_After2", "CMP_After2"); tableMapping.ColumnMappings.Add("bCost", "bCost"); tableMapping.ColumnMappings.Add("bFanOut", "bFanOut"); tableMapping.ColumnMappings.Add("div", "div"); tableMapping.ColumnMappings.Add("model", "model"); tableMapping.ColumnMappings.Add("serial", "serial"); tableMapping.ColumnMappings.Add("EB_Site", "EB_Site"); tableMapping.ColumnMappings.Add("EB_Line", "EB_Line"); tableMapping.ColumnMappings.Add("EB_Team", "EB_Team"); tableMapping.ColumnMappings.Add("EB_Model", "EB_Model"); tableMapping.ColumnMappings.Add("EB_OutSourceName", "EB_OutSourceName"); tableMapping.ColumnMappings.Add("EB_RepairTime", "EB_RepairTime"); tableMapping.ColumnMappings.Add("EB_ConstNew", "EB_ConstNew"); tableMapping.ColumnMappings.Add("EB_BoardName", "EB_BoardName"); tableMapping.ColumnMappings.Add("bAlert", "bAlert"); tableMapping.ColumnMappings.Add("championid", "championid"); tableMapping.ColumnMappings.Add("designid", "designid"); tableMapping.ColumnMappings.Add("assemblyid", "assemblyid"); tableMapping.ColumnMappings.Add("epanelid", "epanelid"); tableMapping.ColumnMappings.Add("softwareid", "softwareid"); tableMapping.ColumnMappings.Add("userAssembly", "userAssembly"); tableMapping.ColumnMappings.Add("ReqLine", "ReqLine"); tableMapping.ColumnMappings.Add("ReqSite", "ReqSite"); tableMapping.ColumnMappings.Add("ReqPackage", "ReqPackage"); tableMapping.ColumnMappings.Add("ReqPlant", "ReqPlant"); tableMapping.ColumnMappings.Add("pno", "pno"); tableMapping.ColumnMappings.Add("kdate", "kdate"); tableMapping.ColumnMappings.Add("jasmin", "jasmin"); tableMapping.ColumnMappings.Add("sfi", "sfi"); tableMapping.ColumnMappings.Add("sfi_type", "sfi_type"); tableMapping.ColumnMappings.Add("sfi_savetime", "sfi_savetime"); tableMapping.ColumnMappings.Add("sfi_savecount", "sfi_savecount"); tableMapping.ColumnMappings.Add("sfi_shiftcount", "sfi_shiftcount"); tableMapping.ColumnMappings.Add("sfic", "sfic"); tableMapping.ColumnMappings.Add("bHighlight", "bHighlight"); tableMapping.ColumnMappings.Add("effect_tangible", "effect_tangible"); tableMapping.ColumnMappings.Add("effect_intangible", "effect_intangible"); tableMapping.ColumnMappings.Add("bmajoritem", "bmajoritem"); tableMapping.ColumnMappings.Add("cramount", "cramount"); this._adapter.TableMappings.Add(tableMapping); this._adapter.DeleteCommand = new global::System.Data.SqlClient.SqlCommand(); this._adapter.DeleteCommand.Connection = this.Connection; this._adapter.DeleteCommand.CommandText = "DELETE FROM [Projects] WHERE (([idx] = @Original_idx) AND ((@IsNull_pidx = 1 AND " + "[pidx] IS NULL) OR ([pidx] = @Original_pidx)) AND ([gcode] = @Original_gcode) AN" + "D ((@IsNull_isdel = 1 AND [isdel] IS NULL) OR ([isdel] = @Original_isdel)) AND (" + "(@IsNull_category = 1 AND [category] IS NULL) OR ([category] = @Original_categor" + "y)) AND ((@IsNull_status = 1 AND [status] IS NULL) OR ([status] = @Original_stat" + "us)) AND ((@IsNull_asset = 1 AND [asset] IS NULL) OR ([asset] = @Original_asset)" + ") AND ((@IsNull_level = 1 AND [level] IS NULL) OR ([level] = @Original_level)) A" + "ND ((@IsNull_rev = 1 AND [rev] IS NULL) OR ([rev] = @Original_rev)) AND ((@IsNul" + "l_process = 1 AND [process] IS NULL) OR ([process] = @Original_process)) AND ((@" + "IsNull_part = 1 AND [part] IS NULL) OR ([part] = @Original_part)) AND ((@IsNull_" + "pdate = 1 AND [pdate] IS NULL) OR ([pdate] = @Original_pdate)) AND ((@IsNull_nam" + "e = 1 AND [name] IS NULL) OR ([name] = @Original_name)) AND ((@IsNull_userManage" + "r = 1 AND [userManager] IS NULL) OR ([userManager] = @Original_userManager)) AND" + " ((@IsNull_usermain = 1 AND [usermain] IS NULL) OR ([usermain] = @Original_userm" + "ain)) AND ((@IsNull_usersub = 1 AND [usersub] IS NULL) OR ([usersub] = @Original" + "_usersub)) AND ((@IsNull_userhw2 = 1 AND [userhw2] IS NULL) OR ([userhw2] = @Ori" + "ginal_userhw2)) AND ((@IsNull_reqstaff = 1 AND [reqstaff] IS NULL) OR ([reqstaff" + "] = @Original_reqstaff)) AND ((@IsNull_costo = 1 AND [costo] IS NULL) OR ([costo" + "] = @Original_costo)) AND ((@IsNull_costn = 1 AND [costn] IS NULL) OR ([costn] =" + " @Original_costn)) AND ((@IsNull_cnt = 1 AND [cnt] IS NULL) OR ([cnt] = @Origina" + "l_cnt)) AND ((@IsNull_sdate = 1 AND [sdate] IS NULL) OR ([sdate] = @Original_sda" + "te)) AND ((@IsNull_ddate = 1 AND [ddate] IS NULL) OR ([ddate] = @Original_ddate)" + ") AND ((@IsNull_edate = 1 AND [edate] IS NULL) OR ([edate] = @Original_edate)) A" + "ND ((@IsNull_odate = 1 AND [odate] IS NULL) OR ([odate] = @Original_odate)) AND " + "((@IsNull_bdate = 1 AND [bdate] IS NULL) OR ([bdate] = @Original_bdate)) AND ((@" + "IsNull_qdate = 1 AND [qdate] IS NULL) OR ([qdate] = @Original_qdate)) AND ((@IsN" + "ull_cdate = 1 AND [cdate] IS NULL) OR ([cdate] = @Original_cdate)) AND ((@IsNull" + "_progress = 1 AND [progress] IS NULL) OR ([progress] = @Original_progress)) AND " + "((@IsNull_memo = 1 AND [memo] IS NULL) OR ([memo] = @Original_memo)) AND ([wuid]" + " = @Original_wuid) AND ([wdate] = @Original_wdate) AND ((@IsNull_orderno = 1 AND" + " [orderno] IS NULL) OR ([orderno] = @Original_orderno)) AND ((@IsNull_crdue = 1 " + "AND [crdue] IS NULL) OR ([crdue] = @Original_crdue)) AND ((@IsNull_import = 1 AN" + "D [import] IS NULL) OR ([import] = @Original_import)) AND ((@IsNull_path = 1 AND" + " [path] IS NULL) OR ([path] = @Original_path)) AND ((@IsNull_userprocess = 1 AND" + " [userprocess] IS NULL) OR ([userprocess] = @Original_userprocess)) AND ((@IsNul" + "l_bCost = 1 AND [bCost] IS NULL) OR ([bCost] = @Original_bCost)) AND ((@IsNull_b" + "FanOut = 1 AND [bFanOut] IS NULL) OR ([bFanOut] = @Original_bFanOut)) AND ((@IsN" + "ull_div = 1 AND [div] IS NULL) OR ([div] = @Original_div)) AND ((@IsNull_model =" + " 1 AND [model] IS NULL) OR ([model] = @Original_model)) AND ((@IsNull_serial = 1" + " AND [serial] IS NULL) OR ([serial] = @Original_serial)) AND ((@IsNull_EB_Site =" + " 1 AND [EB_Site] IS NULL) OR ([EB_Site] = @Original_EB_Site)) AND ((@IsNull_EB_L" + "ine = 1 AND [EB_Line] IS NULL) OR ([EB_Line] = @Original_EB_Line)) AND ((@IsNull" + "_EB_Team = 1 AND [EB_Team] IS NULL) OR ([EB_Team] = @Original_EB_Team)) AND ((@I" + "sNull_EB_Model = 1 AND [EB_Model] IS NULL) OR ([EB_Model] = @Original_EB_Model))" + " AND ((@IsNull_EB_OutSourceName = 1 AND [EB_OutSourceName] IS NULL) OR ([EB_OutS" + "ourceName] = @Original_EB_OutSourceName)) AND ((@IsNull_EB_RepairTime = 1 AND [E" + "B_RepairTime] IS NULL) OR ([EB_RepairTime] = @Original_EB_RepairTime)) AND ((@Is" + "Null_EB_ConstNew = 1 AND [EB_ConstNew] IS NULL) OR ([EB_ConstNew] = @Original_EB" + "_ConstNew)) AND ((@IsNull_EB_BoardName = 1 AND [EB_BoardName] IS NULL) OR ([EB_B" + "oardName] = @Original_EB_BoardName)) AND ((@IsNull_bAlert = 1 AND [bAlert] IS NU" + "LL) OR ([bAlert] = @Original_bAlert)) AND ((@IsNull_championid = 1 AND [champion" + "id] IS NULL) OR ([championid] = @Original_championid)) AND ((@IsNull_designid = " + "1 AND [designid] IS NULL) OR ([designid] = @Original_designid)) AND ((@IsNull_as" + "semblyid = 1 AND [assemblyid] IS NULL) OR ([assemblyid] = @Original_assemblyid))" + " AND ((@IsNull_epanelid = 1 AND [epanelid] IS NULL) OR ([epanelid] = @Original_e" + "panelid)) AND ((@IsNull_softwareid = 1 AND [softwareid] IS NULL) OR ([softwareid" + "] = @Original_softwareid)) AND ((@IsNull_userAssembly = 1 AND [userAssembly] IS " + "NULL) OR ([userAssembly] = @Original_userAssembly)) AND ((@IsNull_ReqLine = 1 AN" + "D [ReqLine] IS NULL) OR ([ReqLine] = @Original_ReqLine)) AND ((@IsNull_ReqSite =" + " 1 AND [ReqSite] IS NULL) OR ([ReqSite] = @Original_ReqSite)) AND ((@IsNull_ReqP" + "ackage = 1 AND [ReqPackage] IS NULL) OR ([ReqPackage] = @Original_ReqPackage)) A" + "ND ((@IsNull_ReqPlant = 1 AND [ReqPlant] IS NULL) OR ([ReqPlant] = @Original_Req" + "Plant)) AND ((@IsNull_pno = 1 AND [pno] IS NULL) OR ([pno] = @Original_pno)) AND" + " ((@IsNull_kdate = 1 AND [kdate] IS NULL) OR ([kdate] = @Original_kdate)) AND ((" + "@IsNull_jasmin = 1 AND [jasmin] IS NULL) OR ([jasmin] = @Original_jasmin)) AND (" + "(@IsNull_sfi = 1 AND [sfi] IS NULL) OR ([sfi] = @Original_sfi)) AND ((@IsNull_sf" + "i_type = 1 AND [sfi_type] IS NULL) OR ([sfi_type] = @Original_sfi_type)) AND ((@" + "IsNull_sfi_savetime = 1 AND [sfi_savetime] IS NULL) OR ([sfi_savetime] = @Origin" + "al_sfi_savetime)) AND ((@IsNull_sfi_savecount = 1 AND [sfi_savecount] IS NULL) O" + "R ([sfi_savecount] = @Original_sfi_savecount)) AND ((@IsNull_sfi_shiftcount = 1 " + "AND [sfi_shiftcount] IS NULL) OR ([sfi_shiftcount] = @Original_sfi_shiftcount)) " + "AND ((@IsNull_sfic = 1 AND [sfic] IS NULL) OR ([sfic] = @Original_sfic)) AND ((@" + "IsNull_bHighlight = 1 AND [bHighlight] IS NULL) OR ([bHighlight] = @Original_bHi" + "ghlight)) AND ((@IsNull_effect_tangible = 1 AND [effect_tangible] IS NULL) OR ([" + "effect_tangible] = @Original_effect_tangible)) AND ((@IsNull_effect_intangible =" + " 1 AND [effect_intangible] IS NULL) OR ([effect_intangible] = @Original_effect_i" + "ntangible)) AND ((@IsNull_bmajoritem = 1 AND [bmajoritem] IS NULL) OR ([bmajorit" + "em] = @Original_bmajoritem)) AND ((@IsNull_cramount = 1 AND [cramount] IS NULL) " + "OR ([cramount] = @Original_cramount)))"; this._adapter.DeleteCommand.CommandType = global::System.Data.CommandType.Text; this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_idx", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "idx", global::System.Data.DataRowVersion.Original, false, null, "", "", "")); this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@IsNull_pidx", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "pidx", global::System.Data.DataRowVersion.Original, true, null, "", "", "")); this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_pidx", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "pidx", global::System.Data.DataRowVersion.Original, false, null, "", "", "")); this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_gcode", global::System.Data.SqlDbType.VarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "gcode", global::System.Data.DataRowVersion.Original, false, null, "", "", "")); this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@IsNull_isdel", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "isdel", global::System.Data.DataRowVersion.Original, true, null, "", "", "")); this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_isdel", global::System.Data.SqlDbType.Bit, 0, global::System.Data.ParameterDirection.Input, 0, 0, "isdel", global::System.Data.DataRowVersion.Original, false, null, "", "", "")); this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@IsNull_category", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "category", global::System.Data.DataRowVersion.Original, true, null, "", "", "")); this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_category", global::System.Data.SqlDbType.VarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "category", global::System.Data.DataRowVersion.Original, false, null, "", "", "")); this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@IsNull_status", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "status", global::System.Data.DataRowVersion.Original, true, null, "", "", "")); this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_status", global::System.Data.SqlDbType.VarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "status", global::System.Data.DataRowVersion.Original, false, null, "", "", "")); this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@IsNull_asset", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "asset", global::System.Data.DataRowVersion.Original, true, null, "", "", "")); this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_asset", global::System.Data.SqlDbType.VarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "asset", global::System.Data.DataRowVersion.Original, false, null, "", "", "")); this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@IsNull_level", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "level", global::System.Data.DataRowVersion.Original, true, null, "", "", "")); this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_level", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "level", global::System.Data.DataRowVersion.Original, false, null, "", "", "")); this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@IsNull_rev", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "rev", global::System.Data.DataRowVersion.Original, true, null, "", "", "")); this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_rev", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "rev", global::System.Data.DataRowVersion.Original, false, null, "", "", "")); this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@IsNull_process", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "process", global::System.Data.DataRowVersion.Original, true, null, "", "", "")); this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_process", global::System.Data.SqlDbType.VarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "process", global::System.Data.DataRowVersion.Original, false, null, "", "", "")); this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@IsNull_part", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "part", global::System.Data.DataRowVersion.Original, true, null, "", "", "")); this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_part", global::System.Data.SqlDbType.VarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "part", global::System.Data.DataRowVersion.Original, false, null, "", "", "")); this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@IsNull_pdate", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "pdate", global::System.Data.DataRowVersion.Original, true, null, "", "", "")); this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_pdate", global::System.Data.SqlDbType.VarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "pdate", global::System.Data.DataRowVersion.Original, false, null, "", "", "")); this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@IsNull_name", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "name", global::System.Data.DataRowVersion.Original, true, null, "", "", "")); this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_name", global::System.Data.SqlDbType.NVarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "name", global::System.Data.DataRowVersion.Original, false, null, "", "", "")); this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@IsNull_userManager", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "userManager", global::System.Data.DataRowVersion.Original, true, null, "", "", "")); this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_userManager", global::System.Data.SqlDbType.VarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "userManager", global::System.Data.DataRowVersion.Original, false, null, "", "", "")); this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@IsNull_usermain", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "usermain", global::System.Data.DataRowVersion.Original, true, null, "", "", "")); this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_usermain", global::System.Data.SqlDbType.VarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "usermain", global::System.Data.DataRowVersion.Original, false, null, "", "", "")); this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@IsNull_usersub", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "usersub", global::System.Data.DataRowVersion.Original, true, null, "", "", "")); this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_usersub", global::System.Data.SqlDbType.VarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "usersub", global::System.Data.DataRowVersion.Original, false, null, "", "", "")); this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@IsNull_userhw2", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "userhw2", global::System.Data.DataRowVersion.Original, true, null, "", "", "")); this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_userhw2", global::System.Data.SqlDbType.VarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "userhw2", global::System.Data.DataRowVersion.Original, false, null, "", "", "")); this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@IsNull_reqstaff", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "reqstaff", global::System.Data.DataRowVersion.Original, true, null, "", "", "")); this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_reqstaff", global::System.Data.SqlDbType.VarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "reqstaff", global::System.Data.DataRowVersion.Original, false, null, "", "", "")); this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@IsNull_costo", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "costo", global::System.Data.DataRowVersion.Original, true, null, "", "", "")); this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_costo", global::System.Data.SqlDbType.Float, 0, global::System.Data.ParameterDirection.Input, 0, 0, "costo", global::System.Data.DataRowVersion.Original, false, null, "", "", "")); this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@IsNull_costn", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "costn", global::System.Data.DataRowVersion.Original, true, null, "", "", "")); this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_costn", global::System.Data.SqlDbType.Float, 0, global::System.Data.ParameterDirection.Input, 0, 0, "costn", global::System.Data.DataRowVersion.Original, false, null, "", "", "")); this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@IsNull_cnt", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "cnt", global::System.Data.DataRowVersion.Original, true, null, "", "", "")); this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_cnt", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "cnt", global::System.Data.DataRowVersion.Original, false, null, "", "", "")); this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@IsNull_sdate", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "sdate", global::System.Data.DataRowVersion.Original, true, null, "", "", "")); this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_sdate", global::System.Data.SqlDbType.VarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "sdate", global::System.Data.DataRowVersion.Original, false, null, "", "", "")); this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@IsNull_ddate", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "ddate", global::System.Data.DataRowVersion.Original, true, null, "", "", "")); this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_ddate", global::System.Data.SqlDbType.VarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "ddate", global::System.Data.DataRowVersion.Original, false, null, "", "", "")); this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@IsNull_edate", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "edate", global::System.Data.DataRowVersion.Original, true, null, "", "", "")); this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_edate", global::System.Data.SqlDbType.VarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "edate", global::System.Data.DataRowVersion.Original, false, null, "", "", "")); this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@IsNull_odate", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "odate", global::System.Data.DataRowVersion.Original, true, null, "", "", "")); this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_odate", global::System.Data.SqlDbType.VarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "odate", global::System.Data.DataRowVersion.Original, false, null, "", "", "")); this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@IsNull_bdate", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "bdate", global::System.Data.DataRowVersion.Original, true, null, "", "", "")); this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_bdate", global::System.Data.SqlDbType.VarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "bdate", global::System.Data.DataRowVersion.Original, false, null, "", "", "")); this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@IsNull_qdate", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "qdate", global::System.Data.DataRowVersion.Original, true, null, "", "", "")); this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_qdate", global::System.Data.SqlDbType.VarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "qdate", global::System.Data.DataRowVersion.Original, false, null, "", "", "")); this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@IsNull_cdate", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "cdate", global::System.Data.DataRowVersion.Original, true, null, "", "", "")); this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_cdate", global::System.Data.SqlDbType.VarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "cdate", global::System.Data.DataRowVersion.Original, false, null, "", "", "")); this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@IsNull_progress", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "progress", global::System.Data.DataRowVersion.Original, true, null, "", "", "")); this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_progress", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "progress", global::System.Data.DataRowVersion.Original, false, null, "", "", "")); this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@IsNull_memo", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "memo", global::System.Data.DataRowVersion.Original, true, null, "", "", "")); this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_memo", global::System.Data.SqlDbType.NVarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "memo", global::System.Data.DataRowVersion.Original, false, null, "", "", "")); this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_wuid", global::System.Data.SqlDbType.VarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "wuid", global::System.Data.DataRowVersion.Original, false, null, "", "", "")); this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_wdate", global::System.Data.SqlDbType.SmallDateTime, 0, global::System.Data.ParameterDirection.Input, 0, 0, "wdate", global::System.Data.DataRowVersion.Original, false, null, "", "", "")); this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@IsNull_orderno", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "orderno", global::System.Data.DataRowVersion.Original, true, null, "", "", "")); this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_orderno", global::System.Data.SqlDbType.VarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "orderno", global::System.Data.DataRowVersion.Original, false, null, "", "", "")); this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@IsNull_crdue", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "crdue", global::System.Data.DataRowVersion.Original, true, null, "", "", "")); this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_crdue", global::System.Data.SqlDbType.VarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "crdue", global::System.Data.DataRowVersion.Original, false, null, "", "", "")); this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@IsNull_import", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "import", global::System.Data.DataRowVersion.Original, true, null, "", "", "")); this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_import", global::System.Data.SqlDbType.Bit, 0, global::System.Data.ParameterDirection.Input, 0, 0, "import", global::System.Data.DataRowVersion.Original, false, null, "", "", "")); this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@IsNull_path", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "path", global::System.Data.DataRowVersion.Original, true, null, "", "", "")); this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_path", global::System.Data.SqlDbType.VarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "path", global::System.Data.DataRowVersion.Original, false, null, "", "", "")); this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@IsNull_userprocess", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "userprocess", global::System.Data.DataRowVersion.Original, true, null, "", "", "")); this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_userprocess", global::System.Data.SqlDbType.NVarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "userprocess", global::System.Data.DataRowVersion.Original, false, null, "", "", "")); this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@IsNull_bCost", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "bCost", global::System.Data.DataRowVersion.Original, true, null, "", "", "")); this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_bCost", global::System.Data.SqlDbType.Bit, 0, global::System.Data.ParameterDirection.Input, 0, 0, "bCost", global::System.Data.DataRowVersion.Original, false, null, "", "", "")); this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@IsNull_bFanOut", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "bFanOut", global::System.Data.DataRowVersion.Original, true, null, "", "", "")); this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_bFanOut", global::System.Data.SqlDbType.Bit, 0, global::System.Data.ParameterDirection.Input, 0, 0, "bFanOut", global::System.Data.DataRowVersion.Original, false, null, "", "", "")); this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@IsNull_div", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "div", global::System.Data.DataRowVersion.Original, true, null, "", "", "")); this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_div", global::System.Data.SqlDbType.VarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "div", global::System.Data.DataRowVersion.Original, false, null, "", "", "")); this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@IsNull_model", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "model", global::System.Data.DataRowVersion.Original, true, null, "", "", "")); this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_model", global::System.Data.SqlDbType.VarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "model", global::System.Data.DataRowVersion.Original, false, null, "", "", "")); this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@IsNull_serial", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "serial", global::System.Data.DataRowVersion.Original, true, null, "", "", "")); this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_serial", global::System.Data.SqlDbType.VarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "serial", global::System.Data.DataRowVersion.Original, false, null, "", "", "")); this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@IsNull_EB_Site", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "EB_Site", global::System.Data.DataRowVersion.Original, true, null, "", "", "")); this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_EB_Site", global::System.Data.SqlDbType.VarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "EB_Site", global::System.Data.DataRowVersion.Original, false, null, "", "", "")); this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@IsNull_EB_Line", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "EB_Line", global::System.Data.DataRowVersion.Original, true, null, "", "", "")); this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_EB_Line", global::System.Data.SqlDbType.VarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "EB_Line", global::System.Data.DataRowVersion.Original, false, null, "", "", "")); this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@IsNull_EB_Team", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "EB_Team", global::System.Data.DataRowVersion.Original, true, null, "", "", "")); this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_EB_Team", global::System.Data.SqlDbType.VarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "EB_Team", global::System.Data.DataRowVersion.Original, false, null, "", "", "")); this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@IsNull_EB_Model", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "EB_Model", global::System.Data.DataRowVersion.Original, true, null, "", "", "")); this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_EB_Model", global::System.Data.SqlDbType.VarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "EB_Model", global::System.Data.DataRowVersion.Original, false, null, "", "", "")); this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@IsNull_EB_OutSourceName", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "EB_OutSourceName", global::System.Data.DataRowVersion.Original, true, null, "", "", "")); this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_EB_OutSourceName", global::System.Data.SqlDbType.VarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "EB_OutSourceName", global::System.Data.DataRowVersion.Original, false, null, "", "", "")); this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@IsNull_EB_RepairTime", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "EB_RepairTime", global::System.Data.DataRowVersion.Original, true, null, "", "", "")); this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_EB_RepairTime", global::System.Data.SqlDbType.Float, 0, global::System.Data.ParameterDirection.Input, 0, 0, "EB_RepairTime", global::System.Data.DataRowVersion.Original, false, null, "", "", "")); this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@IsNull_EB_ConstNew", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "EB_ConstNew", global::System.Data.DataRowVersion.Original, true, null, "", "", "")); this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_EB_ConstNew", global::System.Data.SqlDbType.Float, 0, global::System.Data.ParameterDirection.Input, 0, 0, "EB_ConstNew", global::System.Data.DataRowVersion.Original, false, null, "", "", "")); this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@IsNull_EB_BoardName", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "EB_BoardName", global::System.Data.DataRowVersion.Original, true, null, "", "", "")); this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_EB_BoardName", global::System.Data.SqlDbType.NVarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "EB_BoardName", global::System.Data.DataRowVersion.Original, false, null, "", "", "")); this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@IsNull_bAlert", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "bAlert", global::System.Data.DataRowVersion.Original, true, null, "", "", "")); this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_bAlert", global::System.Data.SqlDbType.Bit, 0, global::System.Data.ParameterDirection.Input, 0, 0, "bAlert", global::System.Data.DataRowVersion.Original, false, null, "", "", "")); this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@IsNull_championid", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "championid", global::System.Data.DataRowVersion.Original, true, null, "", "", "")); this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_championid", global::System.Data.SqlDbType.VarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "championid", global::System.Data.DataRowVersion.Original, false, null, "", "", "")); this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@IsNull_designid", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "designid", global::System.Data.DataRowVersion.Original, true, null, "", "", "")); this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_designid", global::System.Data.SqlDbType.VarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "designid", global::System.Data.DataRowVersion.Original, false, null, "", "", "")); this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@IsNull_assemblyid", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "assemblyid", global::System.Data.DataRowVersion.Original, true, null, "", "", "")); this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_assemblyid", global::System.Data.SqlDbType.VarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "assemblyid", global::System.Data.DataRowVersion.Original, false, null, "", "", "")); this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@IsNull_epanelid", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "epanelid", global::System.Data.DataRowVersion.Original, true, null, "", "", "")); this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_epanelid", global::System.Data.SqlDbType.VarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "epanelid", global::System.Data.DataRowVersion.Original, false, null, "", "", "")); this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@IsNull_softwareid", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "softwareid", global::System.Data.DataRowVersion.Original, true, null, "", "", "")); this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_softwareid", global::System.Data.SqlDbType.VarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "softwareid", global::System.Data.DataRowVersion.Original, false, null, "", "", "")); this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@IsNull_userAssembly", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "userAssembly", global::System.Data.DataRowVersion.Original, true, null, "", "", "")); this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_userAssembly", global::System.Data.SqlDbType.VarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "userAssembly", global::System.Data.DataRowVersion.Original, false, null, "", "", "")); this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@IsNull_ReqLine", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "ReqLine", global::System.Data.DataRowVersion.Original, true, null, "", "", "")); this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_ReqLine", global::System.Data.SqlDbType.VarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "ReqLine", global::System.Data.DataRowVersion.Original, false, null, "", "", "")); this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@IsNull_ReqSite", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "ReqSite", global::System.Data.DataRowVersion.Original, true, null, "", "", "")); this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_ReqSite", global::System.Data.SqlDbType.VarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "ReqSite", global::System.Data.DataRowVersion.Original, false, null, "", "", "")); this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@IsNull_ReqPackage", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "ReqPackage", global::System.Data.DataRowVersion.Original, true, null, "", "", "")); this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_ReqPackage", global::System.Data.SqlDbType.VarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "ReqPackage", global::System.Data.DataRowVersion.Original, false, null, "", "", "")); this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@IsNull_ReqPlant", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "ReqPlant", global::System.Data.DataRowVersion.Original, true, null, "", "", "")); this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_ReqPlant", global::System.Data.SqlDbType.VarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "ReqPlant", global::System.Data.DataRowVersion.Original, false, null, "", "", "")); this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@IsNull_pno", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "pno", global::System.Data.DataRowVersion.Original, true, null, "", "", "")); this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_pno", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "pno", global::System.Data.DataRowVersion.Original, false, null, "", "", "")); this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@IsNull_kdate", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "kdate", global::System.Data.DataRowVersion.Original, true, null, "", "", "")); this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_kdate", global::System.Data.SqlDbType.VarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "kdate", global::System.Data.DataRowVersion.Original, false, null, "", "", "")); this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@IsNull_jasmin", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "jasmin", global::System.Data.DataRowVersion.Original, true, null, "", "", "")); this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_jasmin", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "jasmin", global::System.Data.DataRowVersion.Original, false, null, "", "", "")); this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@IsNull_sfi", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "sfi", global::System.Data.DataRowVersion.Original, true, null, "", "", "")); this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_sfi", global::System.Data.SqlDbType.Float, 0, global::System.Data.ParameterDirection.Input, 0, 0, "sfi", global::System.Data.DataRowVersion.Original, false, null, "", "", "")); this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@IsNull_sfi_type", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "sfi_type", global::System.Data.DataRowVersion.Original, true, null, "", "", "")); this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_sfi_type", global::System.Data.SqlDbType.VarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "sfi_type", global::System.Data.DataRowVersion.Original, false, null, "", "", "")); this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@IsNull_sfi_savetime", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "sfi_savetime", global::System.Data.DataRowVersion.Original, true, null, "", "", "")); this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_sfi_savetime", global::System.Data.SqlDbType.Float, 0, global::System.Data.ParameterDirection.Input, 0, 0, "sfi_savetime", global::System.Data.DataRowVersion.Original, false, null, "", "", "")); this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@IsNull_sfi_savecount", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "sfi_savecount", global::System.Data.DataRowVersion.Original, true, null, "", "", "")); this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_sfi_savecount", global::System.Data.SqlDbType.Float, 0, global::System.Data.ParameterDirection.Input, 0, 0, "sfi_savecount", global::System.Data.DataRowVersion.Original, false, null, "", "", "")); this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@IsNull_sfi_shiftcount", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "sfi_shiftcount", global::System.Data.DataRowVersion.Original, true, null, "", "", "")); this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_sfi_shiftcount", global::System.Data.SqlDbType.Float, 0, global::System.Data.ParameterDirection.Input, 0, 0, "sfi_shiftcount", global::System.Data.DataRowVersion.Original, false, null, "", "", "")); this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@IsNull_sfic", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "sfic", global::System.Data.DataRowVersion.Original, true, null, "", "", "")); this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_sfic", global::System.Data.SqlDbType.Float, 0, global::System.Data.ParameterDirection.Input, 0, 0, "sfic", global::System.Data.DataRowVersion.Original, false, null, "", "", "")); this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@IsNull_bHighlight", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "bHighlight", global::System.Data.DataRowVersion.Original, true, null, "", "", "")); this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_bHighlight", global::System.Data.SqlDbType.Bit, 0, global::System.Data.ParameterDirection.Input, 0, 0, "bHighlight", global::System.Data.DataRowVersion.Original, false, null, "", "", "")); this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@IsNull_effect_tangible", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "effect_tangible", global::System.Data.DataRowVersion.Original, true, null, "", "", "")); this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_effect_tangible", global::System.Data.SqlDbType.VarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "effect_tangible", global::System.Data.DataRowVersion.Original, false, null, "", "", "")); this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@IsNull_effect_intangible", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "effect_intangible", global::System.Data.DataRowVersion.Original, true, null, "", "", "")); this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_effect_intangible", global::System.Data.SqlDbType.VarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "effect_intangible", global::System.Data.DataRowVersion.Original, false, null, "", "", "")); this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@IsNull_bmajoritem", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "bmajoritem", global::System.Data.DataRowVersion.Original, true, null, "", "", "")); this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_bmajoritem", global::System.Data.SqlDbType.Bit, 0, global::System.Data.ParameterDirection.Input, 0, 0, "bmajoritem", global::System.Data.DataRowVersion.Original, false, null, "", "", "")); this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@IsNull_cramount", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "cramount", global::System.Data.DataRowVersion.Original, true, null, "", "", "")); this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_cramount", global::System.Data.SqlDbType.Decimal, 0, global::System.Data.ParameterDirection.Input, 14, 3, "cramount", global::System.Data.DataRowVersion.Original, false, null, "", "", "")); this._adapter.InsertCommand = new global::System.Data.SqlClient.SqlCommand(); this._adapter.InsertCommand.Connection = this.Connection; this._adapter.InsertCommand.CommandText = "INSERT INTO [Projects] ([pidx], [gcode], [isdel], [category], [status], [asset], " + "[level], [rev], [process], [part], [pdate], [name], [userManager], [usermain], [" + "usersub], [userhw2], [reqstaff], [costo], [costn], [cnt], [remark_req], [remark_" + "ans], [sdate], [ddate], [edate], [odate], [bdate], [qdate], [cdate], [progress]," + " [memo], [wuid], [wdate], [orderno], [crdue], [import], [path], [userprocess], [" + "CMP_Background], [CMP_Description], [CMP_Before], [CMP_After], [CMP_After2], [bC" + "ost], [bFanOut], [div], [model], [serial], [EB_Site], [EB_Line], [EB_Team], [EB_" + "Model], [EB_OutSourceName], [EB_RepairTime], [EB_ConstNew], [EB_BoardName], [bAl" + "ert], [championid], [designid], [assemblyid], [epanelid], [softwareid], [userAss" + "embly], [ReqLine], [ReqSite], [ReqPackage], [ReqPlant], [pno], [kdate], [jasmin]" + ", [sfi], [sfi_type], [sfi_savetime], [sfi_savecount], [sfi_shiftcount], [sfic], " + "[bHighlight], [effect_tangible], [effect_intangible], [bmajoritem], [cramount]) " + "VALUES (@pidx, @gcode, @isdel, @category, @status, @asset, @level, @rev, @proces" + "s, @part, @pdate, @name, @userManager, @usermain, @usersub, @userhw2, @reqstaff," + " @costo, @costn, @cnt, @remark_req, @remark_ans, @sdate, @ddate, @edate, @odate," + " @bdate, @qdate, @cdate, @progress, @memo, @wuid, @wdate, @orderno, @crdue, @imp" + "ort, @path, @userprocess, @CMP_Background, @CMP_Description, @CMP_Before, @CMP_A" + "fter, @CMP_After2, @bCost, @bFanOut, @div, @model, @serial, @EB_Site, @EB_Line, " + "@EB_Team, @EB_Model, @EB_OutSourceName, @EB_RepairTime, @EB_ConstNew, @EB_BoardN" + "ame, @bAlert, @championid, @designid, @assemblyid, @epanelid, @softwareid, @user" + "Assembly, @ReqLine, @ReqSite, @ReqPackage, @ReqPlant, @pno, @kdate, @jasmin, @sf" + "i, @sfi_type, @sfi_savetime, @sfi_savecount, @sfi_shiftcount, @sfic, @bHighlight" + ", @effect_tangible, @effect_intangible, @bmajoritem, @cramount);\r\nSELECT idx, pi" + "dx, gcode, isdel, category, status, asset, level, rev, process, part, pdate, nam" + "e, userManager, usermain, usersub, userhw2, reqstaff, costo, costn, cnt, remark_" + "req, remark_ans, sdate, ddate, edate, odate, bdate, qdate, cdate, progress, memo" + ", wuid, wdate, orderno, crdue, import, path, userprocess, CMP_Background, CMP_De" + "scription, CMP_Before, CMP_After, CMP_After2, bCost, bFanOut, div, model, serial" + ", EB_Site, EB_Line, EB_Team, EB_Model, EB_OutSourceName, EB_RepairTime, EB_Const" + "New, EB_BoardName, bAlert, championid, designid, assemblyid, epanelid, softwarei" + "d, userAssembly, ReqLine, ReqSite, ReqPackage, ReqPlant, pno, kdate, jasmin, sfi" + ", sfi_type, sfi_savetime, sfi_savecount, sfi_shiftcount, sfic, bHighlight, effec" + "t_tangible, effect_intangible, bmajoritem, cramount FROM Projects WHERE (idx = S" + "COPE_IDENTITY())"; this._adapter.InsertCommand.CommandType = global::System.Data.CommandType.Text; this._adapter.InsertCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@pidx", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "pidx", global::System.Data.DataRowVersion.Current, false, null, "", "", "")); this._adapter.InsertCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@gcode", global::System.Data.SqlDbType.VarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "gcode", global::System.Data.DataRowVersion.Current, false, null, "", "", "")); this._adapter.InsertCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@isdel", global::System.Data.SqlDbType.Bit, 0, global::System.Data.ParameterDirection.Input, 0, 0, "isdel", global::System.Data.DataRowVersion.Current, false, null, "", "", "")); this._adapter.InsertCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@category", global::System.Data.SqlDbType.VarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "category", global::System.Data.DataRowVersion.Current, false, null, "", "", "")); this._adapter.InsertCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@status", global::System.Data.SqlDbType.VarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "status", global::System.Data.DataRowVersion.Current, false, null, "", "", "")); this._adapter.InsertCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@asset", global::System.Data.SqlDbType.VarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "asset", global::System.Data.DataRowVersion.Current, false, null, "", "", "")); this._adapter.InsertCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@level", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "level", global::System.Data.DataRowVersion.Current, false, null, "", "", "")); this._adapter.InsertCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@rev", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "rev", global::System.Data.DataRowVersion.Current, false, null, "", "", "")); this._adapter.InsertCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@process", global::System.Data.SqlDbType.VarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "process", global::System.Data.DataRowVersion.Current, false, null, "", "", "")); this._adapter.InsertCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@part", global::System.Data.SqlDbType.VarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "part", global::System.Data.DataRowVersion.Current, false, null, "", "", "")); this._adapter.InsertCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@pdate", global::System.Data.SqlDbType.VarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "pdate", global::System.Data.DataRowVersion.Current, false, null, "", "", "")); this._adapter.InsertCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@name", global::System.Data.SqlDbType.NVarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "name", global::System.Data.DataRowVersion.Current, false, null, "", "", "")); this._adapter.InsertCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@userManager", global::System.Data.SqlDbType.VarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "userManager", global::System.Data.DataRowVersion.Current, false, null, "", "", "")); this._adapter.InsertCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@usermain", global::System.Data.SqlDbType.VarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "usermain", global::System.Data.DataRowVersion.Current, false, null, "", "", "")); this._adapter.InsertCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@usersub", global::System.Data.SqlDbType.VarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "usersub", global::System.Data.DataRowVersion.Current, false, null, "", "", "")); this._adapter.InsertCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@userhw2", global::System.Data.SqlDbType.VarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "userhw2", global::System.Data.DataRowVersion.Current, false, null, "", "", "")); this._adapter.InsertCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@reqstaff", global::System.Data.SqlDbType.VarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "reqstaff", global::System.Data.DataRowVersion.Current, false, null, "", "", "")); this._adapter.InsertCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@costo", global::System.Data.SqlDbType.Float, 0, global::System.Data.ParameterDirection.Input, 0, 0, "costo", global::System.Data.DataRowVersion.Current, false, null, "", "", "")); this._adapter.InsertCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@costn", global::System.Data.SqlDbType.Float, 0, global::System.Data.ParameterDirection.Input, 0, 0, "costn", global::System.Data.DataRowVersion.Current, false, null, "", "", "")); this._adapter.InsertCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@cnt", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "cnt", global::System.Data.DataRowVersion.Current, false, null, "", "", "")); this._adapter.InsertCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@remark_req", global::System.Data.SqlDbType.VarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "remark_req", global::System.Data.DataRowVersion.Current, false, null, "", "", "")); this._adapter.InsertCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@remark_ans", global::System.Data.SqlDbType.VarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "remark_ans", global::System.Data.DataRowVersion.Current, false, null, "", "", "")); this._adapter.InsertCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@sdate", global::System.Data.SqlDbType.VarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "sdate", global::System.Data.DataRowVersion.Current, false, null, "", "", "")); this._adapter.InsertCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@ddate", global::System.Data.SqlDbType.VarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "ddate", global::System.Data.DataRowVersion.Current, false, null, "", "", "")); this._adapter.InsertCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@edate", global::System.Data.SqlDbType.VarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "edate", global::System.Data.DataRowVersion.Current, false, null, "", "", "")); this._adapter.InsertCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@odate", global::System.Data.SqlDbType.VarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "odate", global::System.Data.DataRowVersion.Current, false, null, "", "", "")); this._adapter.InsertCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@bdate", global::System.Data.SqlDbType.VarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "bdate", global::System.Data.DataRowVersion.Current, false, null, "", "", "")); this._adapter.InsertCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@qdate", global::System.Data.SqlDbType.VarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "qdate", global::System.Data.DataRowVersion.Current, false, null, "", "", "")); this._adapter.InsertCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@cdate", global::System.Data.SqlDbType.VarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "cdate", global::System.Data.DataRowVersion.Current, false, null, "", "", "")); this._adapter.InsertCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@progress", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "progress", global::System.Data.DataRowVersion.Current, false, null, "", "", "")); this._adapter.InsertCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@memo", global::System.Data.SqlDbType.NVarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "memo", global::System.Data.DataRowVersion.Current, false, null, "", "", "")); this._adapter.InsertCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@wuid", global::System.Data.SqlDbType.VarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "wuid", global::System.Data.DataRowVersion.Current, false, null, "", "", "")); this._adapter.InsertCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@wdate", global::System.Data.SqlDbType.SmallDateTime, 0, global::System.Data.ParameterDirection.Input, 0, 0, "wdate", global::System.Data.DataRowVersion.Current, false, null, "", "", "")); this._adapter.InsertCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@orderno", global::System.Data.SqlDbType.VarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "orderno", global::System.Data.DataRowVersion.Current, false, null, "", "", "")); this._adapter.InsertCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@crdue", global::System.Data.SqlDbType.VarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "crdue", global::System.Data.DataRowVersion.Current, false, null, "", "", "")); this._adapter.InsertCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@import", global::System.Data.SqlDbType.Bit, 0, global::System.Data.ParameterDirection.Input, 0, 0, "import", global::System.Data.DataRowVersion.Current, false, null, "", "", "")); this._adapter.InsertCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@path", global::System.Data.SqlDbType.VarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "path", global::System.Data.DataRowVersion.Current, false, null, "", "", "")); this._adapter.InsertCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@userprocess", global::System.Data.SqlDbType.NVarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "userprocess", global::System.Data.DataRowVersion.Current, false, null, "", "", "")); this._adapter.InsertCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@CMP_Background", global::System.Data.SqlDbType.NVarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "CMP_Background", global::System.Data.DataRowVersion.Current, false, null, "", "", "")); this._adapter.InsertCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@CMP_Description", global::System.Data.SqlDbType.NVarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "CMP_Description", global::System.Data.DataRowVersion.Current, false, null, "", "", "")); this._adapter.InsertCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@CMP_Before", global::System.Data.SqlDbType.NVarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "CMP_Before", global::System.Data.DataRowVersion.Current, false, null, "", "", "")); this._adapter.InsertCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@CMP_After", global::System.Data.SqlDbType.NVarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "CMP_After", global::System.Data.DataRowVersion.Current, false, null, "", "", "")); this._adapter.InsertCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@CMP_After2", global::System.Data.SqlDbType.NVarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "CMP_After2", global::System.Data.DataRowVersion.Current, false, null, "", "", "")); this._adapter.InsertCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@bCost", global::System.Data.SqlDbType.Bit, 0, global::System.Data.ParameterDirection.Input, 0, 0, "bCost", global::System.Data.DataRowVersion.Current, false, null, "", "", "")); this._adapter.InsertCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@bFanOut", global::System.Data.SqlDbType.Bit, 0, global::System.Data.ParameterDirection.Input, 0, 0, "bFanOut", global::System.Data.DataRowVersion.Current, false, null, "", "", "")); this._adapter.InsertCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@div", global::System.Data.SqlDbType.VarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "div", global::System.Data.DataRowVersion.Current, false, null, "", "", "")); this._adapter.InsertCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@model", global::System.Data.SqlDbType.VarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "model", global::System.Data.DataRowVersion.Current, false, null, "", "", "")); this._adapter.InsertCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@serial", global::System.Data.SqlDbType.VarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "serial", global::System.Data.DataRowVersion.Current, false, null, "", "", "")); this._adapter.InsertCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@EB_Site", global::System.Data.SqlDbType.VarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "EB_Site", global::System.Data.DataRowVersion.Current, false, null, "", "", "")); this._adapter.InsertCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@EB_Line", global::System.Data.SqlDbType.VarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "EB_Line", global::System.Data.DataRowVersion.Current, false, null, "", "", "")); this._adapter.InsertCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@EB_Team", global::System.Data.SqlDbType.VarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "EB_Team", global::System.Data.DataRowVersion.Current, false, null, "", "", "")); this._adapter.InsertCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@EB_Model", global::System.Data.SqlDbType.VarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "EB_Model", global::System.Data.DataRowVersion.Current, false, null, "", "", "")); this._adapter.InsertCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@EB_OutSourceName", global::System.Data.SqlDbType.VarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "EB_OutSourceName", global::System.Data.DataRowVersion.Current, false, null, "", "", "")); this._adapter.InsertCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@EB_RepairTime", global::System.Data.SqlDbType.Float, 0, global::System.Data.ParameterDirection.Input, 0, 0, "EB_RepairTime", global::System.Data.DataRowVersion.Current, false, null, "", "", "")); this._adapter.InsertCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@EB_ConstNew", global::System.Data.SqlDbType.Float, 0, global::System.Data.ParameterDirection.Input, 0, 0, "EB_ConstNew", global::System.Data.DataRowVersion.Current, false, null, "", "", "")); this._adapter.InsertCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@EB_BoardName", global::System.Data.SqlDbType.NVarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "EB_BoardName", global::System.Data.DataRowVersion.Current, false, null, "", "", "")); this._adapter.InsertCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@bAlert", global::System.Data.SqlDbType.Bit, 0, global::System.Data.ParameterDirection.Input, 0, 0, "bAlert", global::System.Data.DataRowVersion.Current, false, null, "", "", "")); this._adapter.InsertCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@championid", global::System.Data.SqlDbType.VarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "championid", global::System.Data.DataRowVersion.Current, false, null, "", "", "")); this._adapter.InsertCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@designid", global::System.Data.SqlDbType.VarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "designid", global::System.Data.DataRowVersion.Current, false, null, "", "", "")); this._adapter.InsertCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@assemblyid", global::System.Data.SqlDbType.VarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "assemblyid", global::System.Data.DataRowVersion.Current, false, null, "", "", "")); this._adapter.InsertCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@epanelid", global::System.Data.SqlDbType.VarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "epanelid", global::System.Data.DataRowVersion.Current, false, null, "", "", "")); this._adapter.InsertCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@softwareid", global::System.Data.SqlDbType.VarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "softwareid", global::System.Data.DataRowVersion.Current, false, null, "", "", "")); this._adapter.InsertCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@userAssembly", global::System.Data.SqlDbType.VarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "userAssembly", global::System.Data.DataRowVersion.Current, false, null, "", "", "")); this._adapter.InsertCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@ReqLine", global::System.Data.SqlDbType.VarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "ReqLine", global::System.Data.DataRowVersion.Current, false, null, "", "", "")); this._adapter.InsertCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@ReqSite", global::System.Data.SqlDbType.VarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "ReqSite", global::System.Data.DataRowVersion.Current, false, null, "", "", "")); this._adapter.InsertCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@ReqPackage", global::System.Data.SqlDbType.VarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "ReqPackage", global::System.Data.DataRowVersion.Current, false, null, "", "", "")); this._adapter.InsertCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@ReqPlant", global::System.Data.SqlDbType.VarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "ReqPlant", global::System.Data.DataRowVersion.Current, false, null, "", "", "")); this._adapter.InsertCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@pno", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "pno", global::System.Data.DataRowVersion.Current, false, null, "", "", "")); this._adapter.InsertCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@kdate", global::System.Data.SqlDbType.VarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "kdate", global::System.Data.DataRowVersion.Current, false, null, "", "", "")); this._adapter.InsertCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@jasmin", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "jasmin", global::System.Data.DataRowVersion.Current, false, null, "", "", "")); this._adapter.InsertCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@sfi", global::System.Data.SqlDbType.Float, 0, global::System.Data.ParameterDirection.Input, 0, 0, "sfi", global::System.Data.DataRowVersion.Current, false, null, "", "", "")); this._adapter.InsertCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@sfi_type", global::System.Data.SqlDbType.VarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "sfi_type", global::System.Data.DataRowVersion.Current, false, null, "", "", "")); this._adapter.InsertCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@sfi_savetime", global::System.Data.SqlDbType.Float, 0, global::System.Data.ParameterDirection.Input, 0, 0, "sfi_savetime", global::System.Data.DataRowVersion.Current, false, null, "", "", "")); this._adapter.InsertCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@sfi_savecount", global::System.Data.SqlDbType.Float, 0, global::System.Data.ParameterDirection.Input, 0, 0, "sfi_savecount", global::System.Data.DataRowVersion.Current, false, null, "", "", "")); this._adapter.InsertCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@sfi_shiftcount", global::System.Data.SqlDbType.Float, 0, global::System.Data.ParameterDirection.Input, 0, 0, "sfi_shiftcount", global::System.Data.DataRowVersion.Current, false, null, "", "", "")); this._adapter.InsertCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@sfic", global::System.Data.SqlDbType.Float, 0, global::System.Data.ParameterDirection.Input, 0, 0, "sfic", global::System.Data.DataRowVersion.Current, false, null, "", "", "")); this._adapter.InsertCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@bHighlight", global::System.Data.SqlDbType.Bit, 0, global::System.Data.ParameterDirection.Input, 0, 0, "bHighlight", global::System.Data.DataRowVersion.Current, false, null, "", "", "")); this._adapter.InsertCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@effect_tangible", global::System.Data.SqlDbType.VarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "effect_tangible", global::System.Data.DataRowVersion.Current, false, null, "", "", "")); this._adapter.InsertCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@effect_intangible", global::System.Data.SqlDbType.VarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "effect_intangible", global::System.Data.DataRowVersion.Current, false, null, "", "", "")); this._adapter.InsertCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@bmajoritem", global::System.Data.SqlDbType.Bit, 0, global::System.Data.ParameterDirection.Input, 0, 0, "bmajoritem", global::System.Data.DataRowVersion.Current, false, null, "", "", "")); this._adapter.InsertCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@cramount", global::System.Data.SqlDbType.Decimal, 0, global::System.Data.ParameterDirection.Input, 14, 3, "cramount", global::System.Data.DataRowVersion.Current, false, null, "", "", "")); this._adapter.UpdateCommand = new global::System.Data.SqlClient.SqlCommand(); this._adapter.UpdateCommand.Connection = this.Connection; this._adapter.UpdateCommand.CommandText = "UPDATE [Projects] SET [pidx] = @pidx, [gcode] = @gcode, [isdel] = @isdel, [catego" + "ry] = @category, [status] = @status, [asset] = @asset, [level] = @level, [rev] =" + " @rev, [process] = @process, [part] = @part, [pdate] = @pdate, [name] = @name, [" + "userManager] = @userManager, [usermain] = @usermain, [usersub] = @usersub, [user" + "hw2] = @userhw2, [reqstaff] = @reqstaff, [costo] = @costo, [costn] = @costn, [cn" + "t] = @cnt, [remark_req] = @remark_req, [remark_ans] = @remark_ans, [sdate] = @sd" + "ate, [ddate] = @ddate, [edate] = @edate, [odate] = @odate, [bdate] = @bdate, [qd" + "ate] = @qdate, [cdate] = @cdate, [progress] = @progress, [memo] = @memo, [wuid] " + "= @wuid, [wdate] = @wdate, [orderno] = @orderno, [crdue] = @crdue, [import] = @i" + "mport, [path] = @path, [userprocess] = @userprocess, [CMP_Background] = @CMP_Bac" + "kground, [CMP_Description] = @CMP_Description, [CMP_Before] = @CMP_Before, [CMP_" + "After] = @CMP_After, [CMP_After2] = @CMP_After2, [bCost] = @bCost, [bFanOut] = @" + "bFanOut, [div] = @div, [model] = @model, [serial] = @serial, [EB_Site] = @EB_Sit" + "e, [EB_Line] = @EB_Line, [EB_Team] = @EB_Team, [EB_Model] = @EB_Model, [EB_OutSo" + "urceName] = @EB_OutSourceName, [EB_RepairTime] = @EB_RepairTime, [EB_ConstNew] =" + " @EB_ConstNew, [EB_BoardName] = @EB_BoardName, [bAlert] = @bAlert, [championid] " + "= @championid, [designid] = @designid, [assemblyid] = @assemblyid, [epanelid] = " + "@epanelid, [softwareid] = @softwareid, [userAssembly] = @userAssembly, [ReqLine]" + " = @ReqLine, [ReqSite] = @ReqSite, [ReqPackage] = @ReqPackage, [ReqPlant] = @Req" + "Plant, [pno] = @pno, [kdate] = @kdate, [jasmin] = @jasmin, [sfi] = @sfi, [sfi_ty" + "pe] = @sfi_type, [sfi_savetime] = @sfi_savetime, [sfi_savecount] = @sfi_savecoun" + "t, [sfi_shiftcount] = @sfi_shiftcount, [sfic] = @sfic, [bHighlight] = @bHighligh" + "t, [effect_tangible] = @effect_tangible, [effect_intangible] = @effect_intangibl" + "e, [bmajoritem] = @bmajoritem, [cramount] = @cramount WHERE (([idx] = @Original_" + "idx) AND ((@IsNull_pidx = 1 AND [pidx] IS NULL) OR ([pidx] = @Original_pidx)) AN" + "D ([gcode] = @Original_gcode) AND ((@IsNull_isdel = 1 AND [isdel] IS NULL) OR ([" + "isdel] = @Original_isdel)) AND ((@IsNull_category = 1 AND [category] IS NULL) OR" + " ([category] = @Original_category)) AND ((@IsNull_status = 1 AND [status] IS NUL" + "L) OR ([status] = @Original_status)) AND ((@IsNull_asset = 1 AND [asset] IS NULL" + ") OR ([asset] = @Original_asset)) AND ((@IsNull_level = 1 AND [level] IS NULL) O" + "R ([level] = @Original_level)) AND ((@IsNull_rev = 1 AND [rev] IS NULL) OR ([rev" + "] = @Original_rev)) AND ((@IsNull_process = 1 AND [process] IS NULL) OR ([proces" + "s] = @Original_process)) AND ((@IsNull_part = 1 AND [part] IS NULL) OR ([part] =" + " @Original_part)) AND ((@IsNull_pdate = 1 AND [pdate] IS NULL) OR ([pdate] = @Or" + "iginal_pdate)) AND ((@IsNull_name = 1 AND [name] IS NULL) OR ([name] = @Original" + "_name)) AND ((@IsNull_userManager = 1 AND [userManager] IS NULL) OR ([userManage" + "r] = @Original_userManager)) AND ((@IsNull_usermain = 1 AND [usermain] IS NULL) " + "OR ([usermain] = @Original_usermain)) AND ((@IsNull_usersub = 1 AND [usersub] IS" + " NULL) OR ([usersub] = @Original_usersub)) AND ((@IsNull_userhw2 = 1 AND [userhw" + "2] IS NULL) OR ([userhw2] = @Original_userhw2)) AND ((@IsNull_reqstaff = 1 AND [" + "reqstaff] IS NULL) OR ([reqstaff] = @Original_reqstaff)) AND ((@IsNull_costo = 1" + " AND [costo] IS NULL) OR ([costo] = @Original_costo)) AND ((@IsNull_costn = 1 AN" + "D [costn] IS NULL) OR ([costn] = @Original_costn)) AND ((@IsNull_cnt = 1 AND [cn" + "t] IS NULL) OR ([cnt] = @Original_cnt)) AND ((@IsNull_sdate = 1 AND [sdate] IS N" + "ULL) OR ([sdate] = @Original_sdate)) AND ((@IsNull_ddate = 1 AND [ddate] IS NULL" + ") OR ([ddate] = @Original_ddate)) AND ((@IsNull_edate = 1 AND [edate] IS NULL) O" + "R ([edate] = @Original_edate)) AND ((@IsNull_odate = 1 AND [odate] IS NULL) OR (" + "[odate] = @Original_odate)) AND ((@IsNull_bdate = 1 AND [bdate] IS NULL) OR ([bd" + "ate] = @Original_bdate)) AND ((@IsNull_qdate = 1 AND [qdate] IS NULL) OR ([qdate" + "] = @Original_qdate)) AND ((@IsNull_cdate = 1 AND [cdate] IS NULL) OR ([cdate] =" + " @Original_cdate)) AND ((@IsNull_progress = 1 AND [progress] IS NULL) OR ([progr" + "ess] = @Original_progress)) AND ((@IsNull_memo = 1 AND [memo] IS NULL) OR ([memo" + "] = @Original_memo)) AND ([wuid] = @Original_wuid) AND ([wdate] = @Original_wdat" + "e) AND ((@IsNull_orderno = 1 AND [orderno] IS NULL) OR ([orderno] = @Original_or" + "derno)) AND ((@IsNull_crdue = 1 AND [crdue] IS NULL) OR ([crdue] = @Original_crd" + "ue)) AND ((@IsNull_import = 1 AND [import] IS NULL) OR ([import] = @Original_imp" + "ort)) AND ((@IsNull_path = 1 AND [path] IS NULL) OR ([path] = @Original_path)) A" + "ND ((@IsNull_userprocess = 1 AND [userprocess] IS NULL) OR ([userprocess] = @Ori" + "ginal_userprocess)) AND ((@IsNull_bCost = 1 AND [bCost] IS NULL) OR ([bCost] = @" + "Original_bCost)) AND ((@IsNull_bFanOut = 1 AND [bFanOut] IS NULL) OR ([bFanOut] " + "= @Original_bFanOut)) AND ((@IsNull_div = 1 AND [div] IS NULL) OR ([div] = @Orig" + "inal_div)) AND ((@IsNull_model = 1 AND [model] IS NULL) OR ([model] = @Original_" + "model)) AND ((@IsNull_serial = 1 AND [serial] IS NULL) OR ([serial] = @Original_" + "serial)) AND ((@IsNull_EB_Site = 1 AND [EB_Site] IS NULL) OR ([EB_Site] = @Origi" + "nal_EB_Site)) AND ((@IsNull_EB_Line = 1 AND [EB_Line] IS NULL) OR ([EB_Line] = @" + "Original_EB_Line)) AND ((@IsNull_EB_Team = 1 AND [EB_Team] IS NULL) OR ([EB_Team" + "] = @Original_EB_Team)) AND ((@IsNull_EB_Model = 1 AND [EB_Model] IS NULL) OR ([" + "EB_Model] = @Original_EB_Model)) AND ((@IsNull_EB_OutSourceName = 1 AND [EB_OutS" + "ourceName] IS NULL) OR ([EB_OutSourceName] = @Original_EB_OutSourceName)) AND ((" + "@IsNull_EB_RepairTime = 1 AND [EB_RepairTime] IS NULL) OR ([EB_RepairTime] = @Or" + "iginal_EB_RepairTime)) AND ((@IsNull_EB_ConstNew = 1 AND [EB_ConstNew] IS NULL) " + "OR ([EB_ConstNew] = @Original_EB_ConstNew)) AND ((@IsNull_EB_BoardName = 1 AND [" + "EB_BoardName] IS NULL) OR ([EB_BoardName] = @Original_EB_BoardName)) AND ((@IsNu" + "ll_bAlert = 1 AND [bAlert] IS NULL) OR ([bAlert] = @Original_bAlert)) AND ((@IsN" + "ull_championid = 1 AND [championid] IS NULL) OR ([championid] = @Original_champi" + "onid)) AND ((@IsNull_designid = 1 AND [designid] IS NULL) OR ([designid] = @Orig" + "inal_designid)) AND ((@IsNull_assemblyid = 1 AND [assemblyid] IS NULL) OR ([asse" + "mblyid] = @Original_assemblyid)) AND ((@IsNull_epanelid = 1 AND [epanelid] IS NU" + "LL) OR ([epanelid] = @Original_epanelid)) AND ((@IsNull_softwareid = 1 AND [soft" + "wareid] IS NULL) OR ([softwareid] = @Original_softwareid)) AND ((@IsNull_userAss" + "embly = 1 AND [userAssembly] IS NULL) OR ([userAssembly] = @Original_userAssembl" + "y)) AND ((@IsNull_ReqLine = 1 AND [ReqLine] IS NULL) OR ([ReqLine] = @Original_R" + "eqLine)) AND ((@IsNull_ReqSite = 1 AND [ReqSite] IS NULL) OR ([ReqSite] = @Origi" + "nal_ReqSite)) AND ((@IsNull_ReqPackage = 1 AND [ReqPackage] IS NULL) OR ([ReqPac" + "kage] = @Original_ReqPackage)) AND ((@IsNull_ReqPlant = 1 AND [ReqPlant] IS NULL" + ") OR ([ReqPlant] = @Original_ReqPlant)) AND ((@IsNull_pno = 1 AND [pno] IS NULL)" + " OR ([pno] = @Original_pno)) AND ((@IsNull_kdate = 1 AND [kdate] IS NULL) OR ([k" + "date] = @Original_kdate)) AND ((@IsNull_jasmin = 1 AND [jasmin] IS NULL) OR ([ja" + "smin] = @Original_jasmin)) AND ((@IsNull_sfi = 1 AND [sfi] IS NULL) OR ([sfi] = " + "@Original_sfi)) AND ((@IsNull_sfi_type = 1 AND [sfi_type] IS NULL) OR ([sfi_type" + "] = @Original_sfi_type)) AND ((@IsNull_sfi_savetime = 1 AND [sfi_savetime] IS NU" + "LL) OR ([sfi_savetime] = @Original_sfi_savetime)) AND ((@IsNull_sfi_savecount = " + "1 AND [sfi_savecount] IS NULL) OR ([sfi_savecount] = @Original_sfi_savecount)) A" + "ND ((@IsNull_sfi_shiftcount = 1 AND [sfi_shiftcount] IS NULL) OR ([sfi_shiftcoun" + "t] = @Original_sfi_shiftcount)) AND ((@IsNull_sfic = 1 AND [sfic] IS NULL) OR ([" + "sfic] = @Original_sfic)) AND ((@IsNull_bHighlight = 1 AND [bHighlight] IS NULL) " + "OR ([bHighlight] = @Original_bHighlight)) AND ((@IsNull_effect_tangible = 1 AND " + "[effect_tangible] IS NULL) OR ([effect_tangible] = @Original_effect_tangible)) A" + "ND ((@IsNull_effect_intangible = 1 AND [effect_intangible] IS NULL) OR ([effect_" + "intangible] = @Original_effect_intangible)) AND ((@IsNull_bmajoritem = 1 AND [bm" + "ajoritem] IS NULL) OR ([bmajoritem] = @Original_bmajoritem)) AND ((@IsNull_cramo" + "unt = 1 AND [cramount] IS NULL) OR ([cramount] = @Original_cramount)));\r\nSELECT " + "idx, pidx, gcode, isdel, category, status, asset, level, rev, process, part, pda" + "te, name, userManager, usermain, usersub, userhw2, reqstaff, costo, costn, cnt, " + "remark_req, remark_ans, sdate, ddate, edate, odate, bdate, qdate, cdate, progres" + "s, memo, wuid, wdate, orderno, crdue, import, path, userprocess, CMP_Background," + " CMP_Description, CMP_Before, CMP_After, CMP_After2, bCost, bFanOut, div, model," + " serial, EB_Site, EB_Line, EB_Team, EB_Model, EB_OutSourceName, EB_RepairTime, E" + "B_ConstNew, EB_BoardName, bAlert, championid, designid, assemblyid, epanelid, so" + "ftwareid, userAssembly, ReqLine, ReqSite, ReqPackage, ReqPlant, pno, kdate, jasm" + "in, sfi, sfi_type, sfi_savetime, sfi_savecount, sfi_shiftcount, sfic, bHighlight" + ", effect_tangible, effect_intangible, bmajoritem, cramount FROM Projects WHERE (" + "idx = @idx)"; this._adapter.UpdateCommand.CommandType = global::System.Data.CommandType.Text; this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@pidx", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "pidx", global::System.Data.DataRowVersion.Current, false, null, "", "", "")); this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@gcode", global::System.Data.SqlDbType.VarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "gcode", global::System.Data.DataRowVersion.Current, false, null, "", "", "")); this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@isdel", global::System.Data.SqlDbType.Bit, 0, global::System.Data.ParameterDirection.Input, 0, 0, "isdel", global::System.Data.DataRowVersion.Current, false, null, "", "", "")); this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@category", global::System.Data.SqlDbType.VarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "category", global::System.Data.DataRowVersion.Current, false, null, "", "", "")); this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@status", global::System.Data.SqlDbType.VarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "status", global::System.Data.DataRowVersion.Current, false, null, "", "", "")); this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@asset", global::System.Data.SqlDbType.VarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "asset", global::System.Data.DataRowVersion.Current, false, null, "", "", "")); this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@level", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "level", global::System.Data.DataRowVersion.Current, false, null, "", "", "")); this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@rev", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "rev", global::System.Data.DataRowVersion.Current, false, null, "", "", "")); this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@process", global::System.Data.SqlDbType.VarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "process", global::System.Data.DataRowVersion.Current, false, null, "", "", "")); this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@part", global::System.Data.SqlDbType.VarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "part", global::System.Data.DataRowVersion.Current, false, null, "", "", "")); this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@pdate", global::System.Data.SqlDbType.VarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "pdate", global::System.Data.DataRowVersion.Current, false, null, "", "", "")); this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@name", global::System.Data.SqlDbType.NVarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "name", global::System.Data.DataRowVersion.Current, false, null, "", "", "")); this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@userManager", global::System.Data.SqlDbType.VarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "userManager", global::System.Data.DataRowVersion.Current, false, null, "", "", "")); this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@usermain", global::System.Data.SqlDbType.VarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "usermain", global::System.Data.DataRowVersion.Current, false, null, "", "", "")); this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@usersub", global::System.Data.SqlDbType.VarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "usersub", global::System.Data.DataRowVersion.Current, false, null, "", "", "")); this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@userhw2", global::System.Data.SqlDbType.VarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "userhw2", global::System.Data.DataRowVersion.Current, false, null, "", "", "")); this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@reqstaff", global::System.Data.SqlDbType.VarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "reqstaff", global::System.Data.DataRowVersion.Current, false, null, "", "", "")); this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@costo", global::System.Data.SqlDbType.Float, 0, global::System.Data.ParameterDirection.Input, 0, 0, "costo", global::System.Data.DataRowVersion.Current, false, null, "", "", "")); this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@costn", global::System.Data.SqlDbType.Float, 0, global::System.Data.ParameterDirection.Input, 0, 0, "costn", global::System.Data.DataRowVersion.Current, false, null, "", "", "")); this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@cnt", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "cnt", global::System.Data.DataRowVersion.Current, false, null, "", "", "")); this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@remark_req", global::System.Data.SqlDbType.VarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "remark_req", global::System.Data.DataRowVersion.Current, false, null, "", "", "")); this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@remark_ans", global::System.Data.SqlDbType.VarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "remark_ans", global::System.Data.DataRowVersion.Current, false, null, "", "", "")); this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@sdate", global::System.Data.SqlDbType.VarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "sdate", global::System.Data.DataRowVersion.Current, false, null, "", "", "")); this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@ddate", global::System.Data.SqlDbType.VarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "ddate", global::System.Data.DataRowVersion.Current, false, null, "", "", "")); this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@edate", global::System.Data.SqlDbType.VarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "edate", global::System.Data.DataRowVersion.Current, false, null, "", "", "")); this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@odate", global::System.Data.SqlDbType.VarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "odate", global::System.Data.DataRowVersion.Current, false, null, "", "", "")); this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@bdate", global::System.Data.SqlDbType.VarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "bdate", global::System.Data.DataRowVersion.Current, false, null, "", "", "")); this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@qdate", global::System.Data.SqlDbType.VarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "qdate", global::System.Data.DataRowVersion.Current, false, null, "", "", "")); this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@cdate", global::System.Data.SqlDbType.VarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "cdate", global::System.Data.DataRowVersion.Current, false, null, "", "", "")); this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@progress", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "progress", global::System.Data.DataRowVersion.Current, false, null, "", "", "")); this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@memo", global::System.Data.SqlDbType.NVarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "memo", global::System.Data.DataRowVersion.Current, false, null, "", "", "")); this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@wuid", global::System.Data.SqlDbType.VarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "wuid", global::System.Data.DataRowVersion.Current, false, null, "", "", "")); this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@wdate", global::System.Data.SqlDbType.SmallDateTime, 0, global::System.Data.ParameterDirection.Input, 0, 0, "wdate", global::System.Data.DataRowVersion.Current, false, null, "", "", "")); this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@orderno", global::System.Data.SqlDbType.VarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "orderno", global::System.Data.DataRowVersion.Current, false, null, "", "", "")); this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@crdue", global::System.Data.SqlDbType.VarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "crdue", global::System.Data.DataRowVersion.Current, false, null, "", "", "")); this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@import", global::System.Data.SqlDbType.Bit, 0, global::System.Data.ParameterDirection.Input, 0, 0, "import", global::System.Data.DataRowVersion.Current, false, null, "", "", "")); this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@path", global::System.Data.SqlDbType.VarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "path", global::System.Data.DataRowVersion.Current, false, null, "", "", "")); this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@userprocess", global::System.Data.SqlDbType.NVarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "userprocess", global::System.Data.DataRowVersion.Current, false, null, "", "", "")); this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@CMP_Background", global::System.Data.SqlDbType.NVarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "CMP_Background", global::System.Data.DataRowVersion.Current, false, null, "", "", "")); this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@CMP_Description", global::System.Data.SqlDbType.NVarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "CMP_Description", global::System.Data.DataRowVersion.Current, false, null, "", "", "")); this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@CMP_Before", global::System.Data.SqlDbType.NVarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "CMP_Before", global::System.Data.DataRowVersion.Current, false, null, "", "", "")); this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@CMP_After", global::System.Data.SqlDbType.NVarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "CMP_After", global::System.Data.DataRowVersion.Current, false, null, "", "", "")); this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@CMP_After2", global::System.Data.SqlDbType.NVarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "CMP_After2", global::System.Data.DataRowVersion.Current, false, null, "", "", "")); this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@bCost", global::System.Data.SqlDbType.Bit, 0, global::System.Data.ParameterDirection.Input, 0, 0, "bCost", global::System.Data.DataRowVersion.Current, false, null, "", "", "")); this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@bFanOut", global::System.Data.SqlDbType.Bit, 0, global::System.Data.ParameterDirection.Input, 0, 0, "bFanOut", global::System.Data.DataRowVersion.Current, false, null, "", "", "")); this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@div", global::System.Data.SqlDbType.VarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "div", global::System.Data.DataRowVersion.Current, false, null, "", "", "")); this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@model", global::System.Data.SqlDbType.VarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "model", global::System.Data.DataRowVersion.Current, false, null, "", "", "")); this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@serial", global::System.Data.SqlDbType.VarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "serial", global::System.Data.DataRowVersion.Current, false, null, "", "", "")); this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@EB_Site", global::System.Data.SqlDbType.VarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "EB_Site", global::System.Data.DataRowVersion.Current, false, null, "", "", "")); this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@EB_Line", global::System.Data.SqlDbType.VarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "EB_Line", global::System.Data.DataRowVersion.Current, false, null, "", "", "")); this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@EB_Team", global::System.Data.SqlDbType.VarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "EB_Team", global::System.Data.DataRowVersion.Current, false, null, "", "", "")); this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@EB_Model", global::System.Data.SqlDbType.VarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "EB_Model", global::System.Data.DataRowVersion.Current, false, null, "", "", "")); this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@EB_OutSourceName", global::System.Data.SqlDbType.VarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "EB_OutSourceName", global::System.Data.DataRowVersion.Current, false, null, "", "", "")); this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@EB_RepairTime", global::System.Data.SqlDbType.Float, 0, global::System.Data.ParameterDirection.Input, 0, 0, "EB_RepairTime", global::System.Data.DataRowVersion.Current, false, null, "", "", "")); this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@EB_ConstNew", global::System.Data.SqlDbType.Float, 0, global::System.Data.ParameterDirection.Input, 0, 0, "EB_ConstNew", global::System.Data.DataRowVersion.Current, false, null, "", "", "")); this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@EB_BoardName", global::System.Data.SqlDbType.NVarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "EB_BoardName", global::System.Data.DataRowVersion.Current, false, null, "", "", "")); this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@bAlert", global::System.Data.SqlDbType.Bit, 0, global::System.Data.ParameterDirection.Input, 0, 0, "bAlert", global::System.Data.DataRowVersion.Current, false, null, "", "", "")); this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@championid", global::System.Data.SqlDbType.VarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "championid", global::System.Data.DataRowVersion.Current, false, null, "", "", "")); this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@designid", global::System.Data.SqlDbType.VarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "designid", global::System.Data.DataRowVersion.Current, false, null, "", "", "")); this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@assemblyid", global::System.Data.SqlDbType.VarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "assemblyid", global::System.Data.DataRowVersion.Current, false, null, "", "", "")); this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@epanelid", global::System.Data.SqlDbType.VarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "epanelid", global::System.Data.DataRowVersion.Current, false, null, "", "", "")); this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@softwareid", global::System.Data.SqlDbType.VarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "softwareid", global::System.Data.DataRowVersion.Current, false, null, "", "", "")); this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@userAssembly", global::System.Data.SqlDbType.VarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "userAssembly", global::System.Data.DataRowVersion.Current, false, null, "", "", "")); this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@ReqLine", global::System.Data.SqlDbType.VarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "ReqLine", global::System.Data.DataRowVersion.Current, false, null, "", "", "")); this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@ReqSite", global::System.Data.SqlDbType.VarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "ReqSite", global::System.Data.DataRowVersion.Current, false, null, "", "", "")); this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@ReqPackage", global::System.Data.SqlDbType.VarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "ReqPackage", global::System.Data.DataRowVersion.Current, false, null, "", "", "")); this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@ReqPlant", global::System.Data.SqlDbType.VarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "ReqPlant", global::System.Data.DataRowVersion.Current, false, null, "", "", "")); this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@pno", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "pno", global::System.Data.DataRowVersion.Current, false, null, "", "", "")); this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@kdate", global::System.Data.SqlDbType.VarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "kdate", global::System.Data.DataRowVersion.Current, false, null, "", "", "")); this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@jasmin", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "jasmin", global::System.Data.DataRowVersion.Current, false, null, "", "", "")); this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@sfi", global::System.Data.SqlDbType.Float, 0, global::System.Data.ParameterDirection.Input, 0, 0, "sfi", global::System.Data.DataRowVersion.Current, false, null, "", "", "")); this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@sfi_type", global::System.Data.SqlDbType.VarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "sfi_type", global::System.Data.DataRowVersion.Current, false, null, "", "", "")); this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@sfi_savetime", global::System.Data.SqlDbType.Float, 0, global::System.Data.ParameterDirection.Input, 0, 0, "sfi_savetime", global::System.Data.DataRowVersion.Current, false, null, "", "", "")); this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@sfi_savecount", global::System.Data.SqlDbType.Float, 0, global::System.Data.ParameterDirection.Input, 0, 0, "sfi_savecount", global::System.Data.DataRowVersion.Current, false, null, "", "", "")); this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@sfi_shiftcount", global::System.Data.SqlDbType.Float, 0, global::System.Data.ParameterDirection.Input, 0, 0, "sfi_shiftcount", global::System.Data.DataRowVersion.Current, false, null, "", "", "")); this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@sfic", global::System.Data.SqlDbType.Float, 0, global::System.Data.ParameterDirection.Input, 0, 0, "sfic", global::System.Data.DataRowVersion.Current, false, null, "", "", "")); this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@bHighlight", global::System.Data.SqlDbType.Bit, 0, global::System.Data.ParameterDirection.Input, 0, 0, "bHighlight", global::System.Data.DataRowVersion.Current, false, null, "", "", "")); this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@effect_tangible", global::System.Data.SqlDbType.VarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "effect_tangible", global::System.Data.DataRowVersion.Current, false, null, "", "", "")); this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@effect_intangible", global::System.Data.SqlDbType.VarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "effect_intangible", global::System.Data.DataRowVersion.Current, false, null, "", "", "")); this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@bmajoritem", global::System.Data.SqlDbType.Bit, 0, global::System.Data.ParameterDirection.Input, 0, 0, "bmajoritem", global::System.Data.DataRowVersion.Current, false, null, "", "", "")); this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@cramount", global::System.Data.SqlDbType.Decimal, 0, global::System.Data.ParameterDirection.Input, 14, 3, "cramount", global::System.Data.DataRowVersion.Current, false, null, "", "", "")); this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_idx", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "idx", global::System.Data.DataRowVersion.Original, false, null, "", "", "")); this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@IsNull_pidx", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "pidx", global::System.Data.DataRowVersion.Original, true, null, "", "", "")); this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_pidx", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "pidx", global::System.Data.DataRowVersion.Original, false, null, "", "", "")); this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_gcode", global::System.Data.SqlDbType.VarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "gcode", global::System.Data.DataRowVersion.Original, false, null, "", "", "")); this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@IsNull_isdel", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "isdel", global::System.Data.DataRowVersion.Original, true, null, "", "", "")); this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_isdel", global::System.Data.SqlDbType.Bit, 0, global::System.Data.ParameterDirection.Input, 0, 0, "isdel", global::System.Data.DataRowVersion.Original, false, null, "", "", "")); this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@IsNull_category", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "category", global::System.Data.DataRowVersion.Original, true, null, "", "", "")); this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_category", global::System.Data.SqlDbType.VarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "category", global::System.Data.DataRowVersion.Original, false, null, "", "", "")); this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@IsNull_status", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "status", global::System.Data.DataRowVersion.Original, true, null, "", "", "")); this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_status", global::System.Data.SqlDbType.VarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "status", global::System.Data.DataRowVersion.Original, false, null, "", "", "")); this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@IsNull_asset", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "asset", global::System.Data.DataRowVersion.Original, true, null, "", "", "")); this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_asset", global::System.Data.SqlDbType.VarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "asset", global::System.Data.DataRowVersion.Original, false, null, "", "", "")); this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@IsNull_level", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "level", global::System.Data.DataRowVersion.Original, true, null, "", "", "")); this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_level", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "level", global::System.Data.DataRowVersion.Original, false, null, "", "", "")); this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@IsNull_rev", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "rev", global::System.Data.DataRowVersion.Original, true, null, "", "", "")); this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_rev", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "rev", global::System.Data.DataRowVersion.Original, false, null, "", "", "")); this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@IsNull_process", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "process", global::System.Data.DataRowVersion.Original, true, null, "", "", "")); this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_process", global::System.Data.SqlDbType.VarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "process", global::System.Data.DataRowVersion.Original, false, null, "", "", "")); this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@IsNull_part", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "part", global::System.Data.DataRowVersion.Original, true, null, "", "", "")); this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_part", global::System.Data.SqlDbType.VarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "part", global::System.Data.DataRowVersion.Original, false, null, "", "", "")); this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@IsNull_pdate", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "pdate", global::System.Data.DataRowVersion.Original, true, null, "", "", "")); this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_pdate", global::System.Data.SqlDbType.VarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "pdate", global::System.Data.DataRowVersion.Original, false, null, "", "", "")); this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@IsNull_name", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "name", global::System.Data.DataRowVersion.Original, true, null, "", "", "")); this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_name", global::System.Data.SqlDbType.NVarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "name", global::System.Data.DataRowVersion.Original, false, null, "", "", "")); this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@IsNull_userManager", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "userManager", global::System.Data.DataRowVersion.Original, true, null, "", "", "")); this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_userManager", global::System.Data.SqlDbType.VarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "userManager", global::System.Data.DataRowVersion.Original, false, null, "", "", "")); this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@IsNull_usermain", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "usermain", global::System.Data.DataRowVersion.Original, true, null, "", "", "")); this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_usermain", global::System.Data.SqlDbType.VarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "usermain", global::System.Data.DataRowVersion.Original, false, null, "", "", "")); this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@IsNull_usersub", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "usersub", global::System.Data.DataRowVersion.Original, true, null, "", "", "")); this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_usersub", global::System.Data.SqlDbType.VarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "usersub", global::System.Data.DataRowVersion.Original, false, null, "", "", "")); this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@IsNull_userhw2", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "userhw2", global::System.Data.DataRowVersion.Original, true, null, "", "", "")); this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_userhw2", global::System.Data.SqlDbType.VarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "userhw2", global::System.Data.DataRowVersion.Original, false, null, "", "", "")); this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@IsNull_reqstaff", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "reqstaff", global::System.Data.DataRowVersion.Original, true, null, "", "", "")); this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_reqstaff", global::System.Data.SqlDbType.VarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "reqstaff", global::System.Data.DataRowVersion.Original, false, null, "", "", "")); this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@IsNull_costo", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "costo", global::System.Data.DataRowVersion.Original, true, null, "", "", "")); this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_costo", global::System.Data.SqlDbType.Float, 0, global::System.Data.ParameterDirection.Input, 0, 0, "costo", global::System.Data.DataRowVersion.Original, false, null, "", "", "")); this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@IsNull_costn", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "costn", global::System.Data.DataRowVersion.Original, true, null, "", "", "")); this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_costn", global::System.Data.SqlDbType.Float, 0, global::System.Data.ParameterDirection.Input, 0, 0, "costn", global::System.Data.DataRowVersion.Original, false, null, "", "", "")); this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@IsNull_cnt", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "cnt", global::System.Data.DataRowVersion.Original, true, null, "", "", "")); this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_cnt", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "cnt", global::System.Data.DataRowVersion.Original, false, null, "", "", "")); this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@IsNull_sdate", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "sdate", global::System.Data.DataRowVersion.Original, true, null, "", "", "")); this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_sdate", global::System.Data.SqlDbType.VarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "sdate", global::System.Data.DataRowVersion.Original, false, null, "", "", "")); this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@IsNull_ddate", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "ddate", global::System.Data.DataRowVersion.Original, true, null, "", "", "")); this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_ddate", global::System.Data.SqlDbType.VarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "ddate", global::System.Data.DataRowVersion.Original, false, null, "", "", "")); this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@IsNull_edate", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "edate", global::System.Data.DataRowVersion.Original, true, null, "", "", "")); this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_edate", global::System.Data.SqlDbType.VarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "edate", global::System.Data.DataRowVersion.Original, false, null, "", "", "")); this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@IsNull_odate", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "odate", global::System.Data.DataRowVersion.Original, true, null, "", "", "")); this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_odate", global::System.Data.SqlDbType.VarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "odate", global::System.Data.DataRowVersion.Original, false, null, "", "", "")); this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@IsNull_bdate", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "bdate", global::System.Data.DataRowVersion.Original, true, null, "", "", "")); this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_bdate", global::System.Data.SqlDbType.VarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "bdate", global::System.Data.DataRowVersion.Original, false, null, "", "", "")); this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@IsNull_qdate", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "qdate", global::System.Data.DataRowVersion.Original, true, null, "", "", "")); this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_qdate", global::System.Data.SqlDbType.VarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "qdate", global::System.Data.DataRowVersion.Original, false, null, "", "", "")); this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@IsNull_cdate", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "cdate", global::System.Data.DataRowVersion.Original, true, null, "", "", "")); this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_cdate", global::System.Data.SqlDbType.VarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "cdate", global::System.Data.DataRowVersion.Original, false, null, "", "", "")); this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@IsNull_progress", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "progress", global::System.Data.DataRowVersion.Original, true, null, "", "", "")); this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_progress", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "progress", global::System.Data.DataRowVersion.Original, false, null, "", "", "")); this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@IsNull_memo", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "memo", global::System.Data.DataRowVersion.Original, true, null, "", "", "")); this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_memo", global::System.Data.SqlDbType.NVarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "memo", global::System.Data.DataRowVersion.Original, false, null, "", "", "")); this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_wuid", global::System.Data.SqlDbType.VarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "wuid", global::System.Data.DataRowVersion.Original, false, null, "", "", "")); this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_wdate", global::System.Data.SqlDbType.SmallDateTime, 0, global::System.Data.ParameterDirection.Input, 0, 0, "wdate", global::System.Data.DataRowVersion.Original, false, null, "", "", "")); this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@IsNull_orderno", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "orderno", global::System.Data.DataRowVersion.Original, true, null, "", "", "")); this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_orderno", global::System.Data.SqlDbType.VarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "orderno", global::System.Data.DataRowVersion.Original, false, null, "", "", "")); this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@IsNull_crdue", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "crdue", global::System.Data.DataRowVersion.Original, true, null, "", "", "")); this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_crdue", global::System.Data.SqlDbType.VarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "crdue", global::System.Data.DataRowVersion.Original, false, null, "", "", "")); this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@IsNull_import", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "import", global::System.Data.DataRowVersion.Original, true, null, "", "", "")); this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_import", global::System.Data.SqlDbType.Bit, 0, global::System.Data.ParameterDirection.Input, 0, 0, "import", global::System.Data.DataRowVersion.Original, false, null, "", "", "")); this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@IsNull_path", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "path", global::System.Data.DataRowVersion.Original, true, null, "", "", "")); this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_path", global::System.Data.SqlDbType.VarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "path", global::System.Data.DataRowVersion.Original, false, null, "", "", "")); this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@IsNull_userprocess", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "userprocess", global::System.Data.DataRowVersion.Original, true, null, "", "", "")); this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_userprocess", global::System.Data.SqlDbType.NVarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "userprocess", global::System.Data.DataRowVersion.Original, false, null, "", "", "")); this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@IsNull_bCost", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "bCost", global::System.Data.DataRowVersion.Original, true, null, "", "", "")); this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_bCost", global::System.Data.SqlDbType.Bit, 0, global::System.Data.ParameterDirection.Input, 0, 0, "bCost", global::System.Data.DataRowVersion.Original, false, null, "", "", "")); this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@IsNull_bFanOut", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "bFanOut", global::System.Data.DataRowVersion.Original, true, null, "", "", "")); this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_bFanOut", global::System.Data.SqlDbType.Bit, 0, global::System.Data.ParameterDirection.Input, 0, 0, "bFanOut", global::System.Data.DataRowVersion.Original, false, null, "", "", "")); this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@IsNull_div", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "div", global::System.Data.DataRowVersion.Original, true, null, "", "", "")); this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_div", global::System.Data.SqlDbType.VarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "div", global::System.Data.DataRowVersion.Original, false, null, "", "", "")); this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@IsNull_model", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "model", global::System.Data.DataRowVersion.Original, true, null, "", "", "")); this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_model", global::System.Data.SqlDbType.VarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "model", global::System.Data.DataRowVersion.Original, false, null, "", "", "")); this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@IsNull_serial", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "serial", global::System.Data.DataRowVersion.Original, true, null, "", "", "")); this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_serial", global::System.Data.SqlDbType.VarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "serial", global::System.Data.DataRowVersion.Original, false, null, "", "", "")); this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@IsNull_EB_Site", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "EB_Site", global::System.Data.DataRowVersion.Original, true, null, "", "", "")); this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_EB_Site", global::System.Data.SqlDbType.VarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "EB_Site", global::System.Data.DataRowVersion.Original, false, null, "", "", "")); this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@IsNull_EB_Line", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "EB_Line", global::System.Data.DataRowVersion.Original, true, null, "", "", "")); this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_EB_Line", global::System.Data.SqlDbType.VarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "EB_Line", global::System.Data.DataRowVersion.Original, false, null, "", "", "")); this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@IsNull_EB_Team", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "EB_Team", global::System.Data.DataRowVersion.Original, true, null, "", "", "")); this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_EB_Team", global::System.Data.SqlDbType.VarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "EB_Team", global::System.Data.DataRowVersion.Original, false, null, "", "", "")); this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@IsNull_EB_Model", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "EB_Model", global::System.Data.DataRowVersion.Original, true, null, "", "", "")); this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_EB_Model", global::System.Data.SqlDbType.VarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "EB_Model", global::System.Data.DataRowVersion.Original, false, null, "", "", "")); this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@IsNull_EB_OutSourceName", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "EB_OutSourceName", global::System.Data.DataRowVersion.Original, true, null, "", "", "")); this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_EB_OutSourceName", global::System.Data.SqlDbType.VarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "EB_OutSourceName", global::System.Data.DataRowVersion.Original, false, null, "", "", "")); this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@IsNull_EB_RepairTime", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "EB_RepairTime", global::System.Data.DataRowVersion.Original, true, null, "", "", "")); this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_EB_RepairTime", global::System.Data.SqlDbType.Float, 0, global::System.Data.ParameterDirection.Input, 0, 0, "EB_RepairTime", global::System.Data.DataRowVersion.Original, false, null, "", "", "")); this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@IsNull_EB_ConstNew", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "EB_ConstNew", global::System.Data.DataRowVersion.Original, true, null, "", "", "")); this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_EB_ConstNew", global::System.Data.SqlDbType.Float, 0, global::System.Data.ParameterDirection.Input, 0, 0, "EB_ConstNew", global::System.Data.DataRowVersion.Original, false, null, "", "", "")); this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@IsNull_EB_BoardName", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "EB_BoardName", global::System.Data.DataRowVersion.Original, true, null, "", "", "")); this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_EB_BoardName", global::System.Data.SqlDbType.NVarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "EB_BoardName", global::System.Data.DataRowVersion.Original, false, null, "", "", "")); this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@IsNull_bAlert", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "bAlert", global::System.Data.DataRowVersion.Original, true, null, "", "", "")); this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_bAlert", global::System.Data.SqlDbType.Bit, 0, global::System.Data.ParameterDirection.Input, 0, 0, "bAlert", global::System.Data.DataRowVersion.Original, false, null, "", "", "")); this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@IsNull_championid", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "championid", global::System.Data.DataRowVersion.Original, true, null, "", "", "")); this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_championid", global::System.Data.SqlDbType.VarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "championid", global::System.Data.DataRowVersion.Original, false, null, "", "", "")); this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@IsNull_designid", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "designid", global::System.Data.DataRowVersion.Original, true, null, "", "", "")); this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_designid", global::System.Data.SqlDbType.VarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "designid", global::System.Data.DataRowVersion.Original, false, null, "", "", "")); this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@IsNull_assemblyid", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "assemblyid", global::System.Data.DataRowVersion.Original, true, null, "", "", "")); this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_assemblyid", global::System.Data.SqlDbType.VarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "assemblyid", global::System.Data.DataRowVersion.Original, false, null, "", "", "")); this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@IsNull_epanelid", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "epanelid", global::System.Data.DataRowVersion.Original, true, null, "", "", "")); this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_epanelid", global::System.Data.SqlDbType.VarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "epanelid", global::System.Data.DataRowVersion.Original, false, null, "", "", "")); this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@IsNull_softwareid", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "softwareid", global::System.Data.DataRowVersion.Original, true, null, "", "", "")); this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_softwareid", global::System.Data.SqlDbType.VarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "softwareid", global::System.Data.DataRowVersion.Original, false, null, "", "", "")); this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@IsNull_userAssembly", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "userAssembly", global::System.Data.DataRowVersion.Original, true, null, "", "", "")); this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_userAssembly", global::System.Data.SqlDbType.VarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "userAssembly", global::System.Data.DataRowVersion.Original, false, null, "", "", "")); this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@IsNull_ReqLine", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "ReqLine", global::System.Data.DataRowVersion.Original, true, null, "", "", "")); this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_ReqLine", global::System.Data.SqlDbType.VarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "ReqLine", global::System.Data.DataRowVersion.Original, false, null, "", "", "")); this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@IsNull_ReqSite", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "ReqSite", global::System.Data.DataRowVersion.Original, true, null, "", "", "")); this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_ReqSite", global::System.Data.SqlDbType.VarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "ReqSite", global::System.Data.DataRowVersion.Original, false, null, "", "", "")); this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@IsNull_ReqPackage", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "ReqPackage", global::System.Data.DataRowVersion.Original, true, null, "", "", "")); this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_ReqPackage", global::System.Data.SqlDbType.VarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "ReqPackage", global::System.Data.DataRowVersion.Original, false, null, "", "", "")); this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@IsNull_ReqPlant", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "ReqPlant", global::System.Data.DataRowVersion.Original, true, null, "", "", "")); this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_ReqPlant", global::System.Data.SqlDbType.VarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "ReqPlant", global::System.Data.DataRowVersion.Original, false, null, "", "", "")); this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@IsNull_pno", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "pno", global::System.Data.DataRowVersion.Original, true, null, "", "", "")); this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_pno", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "pno", global::System.Data.DataRowVersion.Original, false, null, "", "", "")); this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@IsNull_kdate", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "kdate", global::System.Data.DataRowVersion.Original, true, null, "", "", "")); this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_kdate", global::System.Data.SqlDbType.VarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "kdate", global::System.Data.DataRowVersion.Original, false, null, "", "", "")); this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@IsNull_jasmin", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "jasmin", global::System.Data.DataRowVersion.Original, true, null, "", "", "")); this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_jasmin", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "jasmin", global::System.Data.DataRowVersion.Original, false, null, "", "", "")); this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@IsNull_sfi", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "sfi", global::System.Data.DataRowVersion.Original, true, null, "", "", "")); this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_sfi", global::System.Data.SqlDbType.Float, 0, global::System.Data.ParameterDirection.Input, 0, 0, "sfi", global::System.Data.DataRowVersion.Original, false, null, "", "", "")); this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@IsNull_sfi_type", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "sfi_type", global::System.Data.DataRowVersion.Original, true, null, "", "", "")); this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_sfi_type", global::System.Data.SqlDbType.VarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "sfi_type", global::System.Data.DataRowVersion.Original, false, null, "", "", "")); this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@IsNull_sfi_savetime", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "sfi_savetime", global::System.Data.DataRowVersion.Original, true, null, "", "", "")); this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_sfi_savetime", global::System.Data.SqlDbType.Float, 0, global::System.Data.ParameterDirection.Input, 0, 0, "sfi_savetime", global::System.Data.DataRowVersion.Original, false, null, "", "", "")); this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@IsNull_sfi_savecount", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "sfi_savecount", global::System.Data.DataRowVersion.Original, true, null, "", "", "")); this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_sfi_savecount", global::System.Data.SqlDbType.Float, 0, global::System.Data.ParameterDirection.Input, 0, 0, "sfi_savecount", global::System.Data.DataRowVersion.Original, false, null, "", "", "")); this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@IsNull_sfi_shiftcount", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "sfi_shiftcount", global::System.Data.DataRowVersion.Original, true, null, "", "", "")); this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_sfi_shiftcount", global::System.Data.SqlDbType.Float, 0, global::System.Data.ParameterDirection.Input, 0, 0, "sfi_shiftcount", global::System.Data.DataRowVersion.Original, false, null, "", "", "")); this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@IsNull_sfic", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "sfic", global::System.Data.DataRowVersion.Original, true, null, "", "", "")); this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_sfic", global::System.Data.SqlDbType.Float, 0, global::System.Data.ParameterDirection.Input, 0, 0, "sfic", global::System.Data.DataRowVersion.Original, false, null, "", "", "")); this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@IsNull_bHighlight", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "bHighlight", global::System.Data.DataRowVersion.Original, true, null, "", "", "")); this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_bHighlight", global::System.Data.SqlDbType.Bit, 0, global::System.Data.ParameterDirection.Input, 0, 0, "bHighlight", global::System.Data.DataRowVersion.Original, false, null, "", "", "")); this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@IsNull_effect_tangible", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "effect_tangible", global::System.Data.DataRowVersion.Original, true, null, "", "", "")); this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_effect_tangible", global::System.Data.SqlDbType.VarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "effect_tangible", global::System.Data.DataRowVersion.Original, false, null, "", "", "")); this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@IsNull_effect_intangible", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "effect_intangible", global::System.Data.DataRowVersion.Original, true, null, "", "", "")); this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_effect_intangible", global::System.Data.SqlDbType.VarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "effect_intangible", global::System.Data.DataRowVersion.Original, false, null, "", "", "")); this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@IsNull_bmajoritem", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "bmajoritem", global::System.Data.DataRowVersion.Original, true, null, "", "", "")); this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_bmajoritem", global::System.Data.SqlDbType.Bit, 0, global::System.Data.ParameterDirection.Input, 0, 0, "bmajoritem", global::System.Data.DataRowVersion.Original, false, null, "", "", "")); this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@IsNull_cramount", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "cramount", global::System.Data.DataRowVersion.Original, true, null, "", "", "")); this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_cramount", global::System.Data.SqlDbType.Decimal, 0, global::System.Data.ParameterDirection.Input, 14, 3, "cramount", global::System.Data.DataRowVersion.Original, false, null, "", "", "")); this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@idx", global::System.Data.SqlDbType.Int, 4, global::System.Data.ParameterDirection.Input, 0, 0, "idx", global::System.Data.DataRowVersion.Current, false, null, "", "", "")); } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] private void InitConnection() { this._connection = new global::System.Data.SqlClient.SqlConnection(); this._connection.ConnectionString = global::Project.Properties.Settings.Default.gwcs; } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] private void InitCommandCollection() { this._commandCollection = new global::System.Data.SqlClient.SqlCommand[3]; this._commandCollection[0] = new global::System.Data.SqlClient.SqlCommand(); this._commandCollection[0].Connection = this.Connection; this._commandCollection[0].CommandText = @"SELECT idx, pidx, gcode, isdel, category, status, asset, level, rev, process, part, pdate, name, userManager, usermain, usersub, userhw2, reqstaff, costo, costn, cnt, remark_req, remark_ans, sdate, ddate, edate, odate, bdate, qdate, cdate, progress, memo, wuid, wdate, orderno, crdue, import, path, userprocess, CMP_Background, CMP_Description, CMP_Before, CMP_After, CMP_After2, bCost, bFanOut, div, model, serial, EB_Site, EB_Line, EB_Team, EB_Model, EB_OutSourceName, EB_RepairTime, EB_ConstNew, EB_BoardName, bAlert, championid, designid, assemblyid, epanelid, softwareid, userAssembly, ReqLine, ReqSite, ReqPackage, ReqPlant, pno, kdate, jasmin, sfi, sfi_type, sfi_savetime, sfi_savecount, sfi_shiftcount, sfic, bHighlight, effect_tangible, effect_intangible, bmajoritem, cramount FROM Projects WITH (nolock) WHERE (gcode = @gcode) AND (idx = @idx)"; this._commandCollection[0].CommandType = global::System.Data.CommandType.Text; this._commandCollection[0].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@gcode", global::System.Data.SqlDbType.VarChar, 10, global::System.Data.ParameterDirection.Input, 0, 0, "gcode", global::System.Data.DataRowVersion.Current, false, null, "", "", "")); this._commandCollection[0].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@idx", global::System.Data.SqlDbType.Int, 4, global::System.Data.ParameterDirection.Input, 0, 0, "idx", global::System.Data.DataRowVersion.Current, false, null, "", "", "")); this._commandCollection[1] = new global::System.Data.SqlClient.SqlCommand(); this._commandCollection[1].Connection = this.Connection; this._commandCollection[1].CommandText = @"SELECT TOP (50) CMP_After, CMP_After2, CMP_Background, CMP_Before, CMP_Description, EB_BoardName, EB_ConstNew, EB_Line, EB_Model, EB_OutSourceName, EB_RepairTime, EB_Site, EB_Team, ReqLine, ReqPackage, ReqPlant, ReqSite, assemblyid, asset, bAlert, bCost, bFanOut, bHighlight, bdate, bmajoritem, category, cdate, championid, cnt, costn, costo, cramount, crdue, ddate, designid, div, edate, effect_intangible, effect_tangible, epanelid, gcode, idx, import, isdel, jasmin, kdate, level, memo, model, name, odate, orderno, part, path, pdate, pidx, pno, process, progress, qdate, remark_ans, remark_req, reqstaff, rev, sdate, serial, sfi, sfi_savecount, sfi_savetime, sfi_shiftcount, sfi_type, sfic, softwareid, status, userAssembly, userManager, userhw2, usermain, userprocess, usersub, wdate, wuid FROM Projects WITH (nolock) WHERE (gcode = @gcode) AND (ISNULL(status, '') LIKE '%완료%') ORDER BY pdate DESC"; this._commandCollection[1].CommandType = global::System.Data.CommandType.Text; this._commandCollection[1].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@gcode", global::System.Data.SqlDbType.VarChar, 10, global::System.Data.ParameterDirection.Input, 0, 0, "gcode", global::System.Data.DataRowVersion.Current, false, null, "", "", "")); this._commandCollection[2] = new global::System.Data.SqlClient.SqlCommand(); this._commandCollection[2].Connection = this.Connection; this._commandCollection[2].CommandText = @"SELECT TOP (50) CMP_After, CMP_After2, CMP_Background, CMP_Before, CMP_Description, EB_BoardName, EB_ConstNew, EB_Line, EB_Model, EB_OutSourceName, EB_RepairTime, EB_Site, EB_Team, ReqLine, ReqPackage, ReqPlant, ReqSite, assemblyid, asset, bAlert, bCost, bFanOut, bHighlight, bdate, bmajoritem, category, cdate, championid, cnt, costn, costo, cramount, crdue, ddate, designid, div, edate, effect_intangible, effect_tangible, epanelid, gcode, idx, import, isdel, jasmin, kdate, level, memo, model, name, odate, orderno, part, path, pdate, pidx, pno, process, progress, qdate, remark_ans, remark_req, reqstaff, rev, sdate, serial, sfi, sfi_savecount, sfi_savetime, sfi_shiftcount, sfi_type, sfic, softwareid, status, userAssembly, userManager, userhw2, usermain, userprocess, usersub, wdate, wuid FROM Projects WITH (nolock) WHERE (gcode = @gcode) AND (ISNULL(status, '') NOT LIKE '%완료%') ORDER BY pdate DESC"; this._commandCollection[2].CommandType = global::System.Data.CommandType.Text; this._commandCollection[2].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@gcode", global::System.Data.SqlDbType.VarChar, 10, global::System.Data.ParameterDirection.Input, 0, 0, "gcode", global::System.Data.DataRowVersion.Current, false, null, "", "", "")); } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")] [global::System.ComponentModel.DataObjectMethodAttribute(global::System.ComponentModel.DataObjectMethodType.Fill, true)] public virtual int Fill(dsProjects.ProjectsDataTable dataTable, string gcode, int idx) { this.Adapter.SelectCommand = this.CommandCollection[0]; if ((gcode == null)) { throw new global::System.ArgumentNullException("gcode"); } else { this.Adapter.SelectCommand.Parameters[0].Value = ((string)(gcode)); } this.Adapter.SelectCommand.Parameters[1].Value = ((int)(idx)); if ((this.ClearBeforeFill == true)) { dataTable.Clear(); } int returnValue = this.Adapter.Fill(dataTable); return returnValue; } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")] [global::System.ComponentModel.DataObjectMethodAttribute(global::System.ComponentModel.DataObjectMethodType.Select, true)] public virtual dsProjects.ProjectsDataTable GetData(string gcode, int idx) { this.Adapter.SelectCommand = this.CommandCollection[0]; if ((gcode == null)) { throw new global::System.ArgumentNullException("gcode"); } else { this.Adapter.SelectCommand.Parameters[0].Value = ((string)(gcode)); } this.Adapter.SelectCommand.Parameters[1].Value = ((int)(idx)); dsProjects.ProjectsDataTable dataTable = new dsProjects.ProjectsDataTable(); this.Adapter.Fill(dataTable); return dataTable; } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")] [global::System.ComponentModel.DataObjectMethodAttribute(global::System.ComponentModel.DataObjectMethodType.Fill, false)] public virtual int FillByCompleteTop50(dsProjects.ProjectsDataTable dataTable, string gcode) { this.Adapter.SelectCommand = this.CommandCollection[1]; if ((gcode == null)) { throw new global::System.ArgumentNullException("gcode"); } else { this.Adapter.SelectCommand.Parameters[0].Value = ((string)(gcode)); } if ((this.ClearBeforeFill == true)) { dataTable.Clear(); } int returnValue = this.Adapter.Fill(dataTable); return returnValue; } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")] [global::System.ComponentModel.DataObjectMethodAttribute(global::System.ComponentModel.DataObjectMethodType.Select, false)] public virtual dsProjects.ProjectsDataTable GetByCompleteTop50(string gcode) { this.Adapter.SelectCommand = this.CommandCollection[1]; if ((gcode == null)) { throw new global::System.ArgumentNullException("gcode"); } else { this.Adapter.SelectCommand.Parameters[0].Value = ((string)(gcode)); } dsProjects.ProjectsDataTable dataTable = new dsProjects.ProjectsDataTable(); this.Adapter.Fill(dataTable); return dataTable; } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")] [global::System.ComponentModel.DataObjectMethodAttribute(global::System.ComponentModel.DataObjectMethodType.Fill, false)] public virtual int FillByNotCompleteTop50(dsProjects.ProjectsDataTable dataTable, string gcode) { this.Adapter.SelectCommand = this.CommandCollection[2]; if ((gcode == null)) { throw new global::System.ArgumentNullException("gcode"); } else { this.Adapter.SelectCommand.Parameters[0].Value = ((string)(gcode)); } if ((this.ClearBeforeFill == true)) { dataTable.Clear(); } int returnValue = this.Adapter.Fill(dataTable); return returnValue; } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")] [global::System.ComponentModel.DataObjectMethodAttribute(global::System.ComponentModel.DataObjectMethodType.Select, false)] public virtual dsProjects.ProjectsDataTable GetNotCompleteTop50(string gcode) { this.Adapter.SelectCommand = this.CommandCollection[2]; if ((gcode == null)) { throw new global::System.ArgumentNullException("gcode"); } else { this.Adapter.SelectCommand.Parameters[0].Value = ((string)(gcode)); } dsProjects.ProjectsDataTable dataTable = new dsProjects.ProjectsDataTable(); this.Adapter.Fill(dataTable); return dataTable; } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")] public virtual int Update(dsProjects.ProjectsDataTable dataTable) { return this.Adapter.Update(dataTable); } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")] public virtual int Update(dsProjects dataSet) { return this.Adapter.Update(dataSet, "Projects"); } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")] public virtual int Update(global::System.Data.DataRow dataRow) { return this.Adapter.Update(new global::System.Data.DataRow[] { dataRow}); } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")] public virtual int Update(global::System.Data.DataRow[] dataRows) { return this.Adapter.Update(dataRows); } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")] [global::System.ComponentModel.DataObjectMethodAttribute(global::System.ComponentModel.DataObjectMethodType.Delete, true)] public virtual int Delete( int Original_idx, global::System.Nullable Original_pidx, string Original_gcode, global::System.Nullable Original_isdel, string Original_category, string Original_status, string Original_asset, global::System.Nullable Original_level, global::System.Nullable Original_rev, string Original_process, string Original_part, string Original_pdate, string Original_name, string Original_userManager, string Original_usermain, string Original_usersub, string Original_userhw2, string Original_reqstaff, global::System.Nullable Original_costo, global::System.Nullable Original_costn, global::System.Nullable Original_cnt, string Original_sdate, string Original_ddate, string Original_edate, string Original_odate, string Original_bdate, string Original_qdate, string Original_cdate, global::System.Nullable Original_progress, string Original_memo, string Original_wuid, System.DateTime Original_wdate, string Original_orderno, string Original_crdue, global::System.Nullable Original_import, string Original_path, string Original_userprocess, global::System.Nullable Original_bCost, global::System.Nullable Original_bFanOut, string Original_div, string Original_model, string Original_serial, string Original_EB_Site, string Original_EB_Line, string Original_EB_Team, string Original_EB_Model, string Original_EB_OutSourceName, global::System.Nullable Original_EB_RepairTime, global::System.Nullable Original_EB_ConstNew, string Original_EB_BoardName, global::System.Nullable Original_bAlert, string Original_championid, string Original_designid, string Original_assemblyid, string Original_epanelid, string Original_softwareid, string Original_userAssembly, string Original_ReqLine, string Original_ReqSite, string Original_ReqPackage, string Original_ReqPlant, global::System.Nullable Original_pno, string Original_kdate, global::System.Nullable Original_jasmin, global::System.Nullable Original_sfi, string Original_sfi_type, global::System.Nullable Original_sfi_savetime, global::System.Nullable Original_sfi_savecount, global::System.Nullable Original_sfi_shiftcount, global::System.Nullable Original_sfic, global::System.Nullable Original_bHighlight, string Original_effect_tangible, string Original_effect_intangible, global::System.Nullable Original_bmajoritem, global::System.Nullable Original_cramount) { this.Adapter.DeleteCommand.Parameters[0].Value = ((int)(Original_idx)); if ((Original_pidx.HasValue == true)) { this.Adapter.DeleteCommand.Parameters[1].Value = ((object)(0)); this.Adapter.DeleteCommand.Parameters[2].Value = ((int)(Original_pidx.Value)); } else { this.Adapter.DeleteCommand.Parameters[1].Value = ((object)(1)); this.Adapter.DeleteCommand.Parameters[2].Value = global::System.DBNull.Value; } if ((Original_gcode == null)) { throw new global::System.ArgumentNullException("Original_gcode"); } else { this.Adapter.DeleteCommand.Parameters[3].Value = ((string)(Original_gcode)); } if ((Original_isdel.HasValue == true)) { this.Adapter.DeleteCommand.Parameters[4].Value = ((object)(0)); this.Adapter.DeleteCommand.Parameters[5].Value = ((bool)(Original_isdel.Value)); } else { this.Adapter.DeleteCommand.Parameters[4].Value = ((object)(1)); this.Adapter.DeleteCommand.Parameters[5].Value = global::System.DBNull.Value; } if ((Original_category == null)) { this.Adapter.DeleteCommand.Parameters[6].Value = ((object)(1)); this.Adapter.DeleteCommand.Parameters[7].Value = global::System.DBNull.Value; } else { this.Adapter.DeleteCommand.Parameters[6].Value = ((object)(0)); this.Adapter.DeleteCommand.Parameters[7].Value = ((string)(Original_category)); } if ((Original_status == null)) { this.Adapter.DeleteCommand.Parameters[8].Value = ((object)(1)); this.Adapter.DeleteCommand.Parameters[9].Value = global::System.DBNull.Value; } else { this.Adapter.DeleteCommand.Parameters[8].Value = ((object)(0)); this.Adapter.DeleteCommand.Parameters[9].Value = ((string)(Original_status)); } if ((Original_asset == null)) { this.Adapter.DeleteCommand.Parameters[10].Value = ((object)(1)); this.Adapter.DeleteCommand.Parameters[11].Value = global::System.DBNull.Value; } else { this.Adapter.DeleteCommand.Parameters[10].Value = ((object)(0)); this.Adapter.DeleteCommand.Parameters[11].Value = ((string)(Original_asset)); } if ((Original_level.HasValue == true)) { this.Adapter.DeleteCommand.Parameters[12].Value = ((object)(0)); this.Adapter.DeleteCommand.Parameters[13].Value = ((int)(Original_level.Value)); } else { this.Adapter.DeleteCommand.Parameters[12].Value = ((object)(1)); this.Adapter.DeleteCommand.Parameters[13].Value = global::System.DBNull.Value; } if ((Original_rev.HasValue == true)) { this.Adapter.DeleteCommand.Parameters[14].Value = ((object)(0)); this.Adapter.DeleteCommand.Parameters[15].Value = ((int)(Original_rev.Value)); } else { this.Adapter.DeleteCommand.Parameters[14].Value = ((object)(1)); this.Adapter.DeleteCommand.Parameters[15].Value = global::System.DBNull.Value; } if ((Original_process == null)) { this.Adapter.DeleteCommand.Parameters[16].Value = ((object)(1)); this.Adapter.DeleteCommand.Parameters[17].Value = global::System.DBNull.Value; } else { this.Adapter.DeleteCommand.Parameters[16].Value = ((object)(0)); this.Adapter.DeleteCommand.Parameters[17].Value = ((string)(Original_process)); } if ((Original_part == null)) { this.Adapter.DeleteCommand.Parameters[18].Value = ((object)(1)); this.Adapter.DeleteCommand.Parameters[19].Value = global::System.DBNull.Value; } else { this.Adapter.DeleteCommand.Parameters[18].Value = ((object)(0)); this.Adapter.DeleteCommand.Parameters[19].Value = ((string)(Original_part)); } if ((Original_pdate == null)) { this.Adapter.DeleteCommand.Parameters[20].Value = ((object)(1)); this.Adapter.DeleteCommand.Parameters[21].Value = global::System.DBNull.Value; } else { this.Adapter.DeleteCommand.Parameters[20].Value = ((object)(0)); this.Adapter.DeleteCommand.Parameters[21].Value = ((string)(Original_pdate)); } if ((Original_name == null)) { this.Adapter.DeleteCommand.Parameters[22].Value = ((object)(1)); this.Adapter.DeleteCommand.Parameters[23].Value = global::System.DBNull.Value; } else { this.Adapter.DeleteCommand.Parameters[22].Value = ((object)(0)); this.Adapter.DeleteCommand.Parameters[23].Value = ((string)(Original_name)); } if ((Original_userManager == null)) { this.Adapter.DeleteCommand.Parameters[24].Value = ((object)(1)); this.Adapter.DeleteCommand.Parameters[25].Value = global::System.DBNull.Value; } else { this.Adapter.DeleteCommand.Parameters[24].Value = ((object)(0)); this.Adapter.DeleteCommand.Parameters[25].Value = ((string)(Original_userManager)); } if ((Original_usermain == null)) { this.Adapter.DeleteCommand.Parameters[26].Value = ((object)(1)); this.Adapter.DeleteCommand.Parameters[27].Value = global::System.DBNull.Value; } else { this.Adapter.DeleteCommand.Parameters[26].Value = ((object)(0)); this.Adapter.DeleteCommand.Parameters[27].Value = ((string)(Original_usermain)); } if ((Original_usersub == null)) { this.Adapter.DeleteCommand.Parameters[28].Value = ((object)(1)); this.Adapter.DeleteCommand.Parameters[29].Value = global::System.DBNull.Value; } else { this.Adapter.DeleteCommand.Parameters[28].Value = ((object)(0)); this.Adapter.DeleteCommand.Parameters[29].Value = ((string)(Original_usersub)); } if ((Original_userhw2 == null)) { this.Adapter.DeleteCommand.Parameters[30].Value = ((object)(1)); this.Adapter.DeleteCommand.Parameters[31].Value = global::System.DBNull.Value; } else { this.Adapter.DeleteCommand.Parameters[30].Value = ((object)(0)); this.Adapter.DeleteCommand.Parameters[31].Value = ((string)(Original_userhw2)); } if ((Original_reqstaff == null)) { this.Adapter.DeleteCommand.Parameters[32].Value = ((object)(1)); this.Adapter.DeleteCommand.Parameters[33].Value = global::System.DBNull.Value; } else { this.Adapter.DeleteCommand.Parameters[32].Value = ((object)(0)); this.Adapter.DeleteCommand.Parameters[33].Value = ((string)(Original_reqstaff)); } if ((Original_costo.HasValue == true)) { this.Adapter.DeleteCommand.Parameters[34].Value = ((object)(0)); this.Adapter.DeleteCommand.Parameters[35].Value = ((double)(Original_costo.Value)); } else { this.Adapter.DeleteCommand.Parameters[34].Value = ((object)(1)); this.Adapter.DeleteCommand.Parameters[35].Value = global::System.DBNull.Value; } if ((Original_costn.HasValue == true)) { this.Adapter.DeleteCommand.Parameters[36].Value = ((object)(0)); this.Adapter.DeleteCommand.Parameters[37].Value = ((double)(Original_costn.Value)); } else { this.Adapter.DeleteCommand.Parameters[36].Value = ((object)(1)); this.Adapter.DeleteCommand.Parameters[37].Value = global::System.DBNull.Value; } if ((Original_cnt.HasValue == true)) { this.Adapter.DeleteCommand.Parameters[38].Value = ((object)(0)); this.Adapter.DeleteCommand.Parameters[39].Value = ((int)(Original_cnt.Value)); } else { this.Adapter.DeleteCommand.Parameters[38].Value = ((object)(1)); this.Adapter.DeleteCommand.Parameters[39].Value = global::System.DBNull.Value; } if ((Original_sdate == null)) { this.Adapter.DeleteCommand.Parameters[40].Value = ((object)(1)); this.Adapter.DeleteCommand.Parameters[41].Value = global::System.DBNull.Value; } else { this.Adapter.DeleteCommand.Parameters[40].Value = ((object)(0)); this.Adapter.DeleteCommand.Parameters[41].Value = ((string)(Original_sdate)); } if ((Original_ddate == null)) { this.Adapter.DeleteCommand.Parameters[42].Value = ((object)(1)); this.Adapter.DeleteCommand.Parameters[43].Value = global::System.DBNull.Value; } else { this.Adapter.DeleteCommand.Parameters[42].Value = ((object)(0)); this.Adapter.DeleteCommand.Parameters[43].Value = ((string)(Original_ddate)); } if ((Original_edate == null)) { this.Adapter.DeleteCommand.Parameters[44].Value = ((object)(1)); this.Adapter.DeleteCommand.Parameters[45].Value = global::System.DBNull.Value; } else { this.Adapter.DeleteCommand.Parameters[44].Value = ((object)(0)); this.Adapter.DeleteCommand.Parameters[45].Value = ((string)(Original_edate)); } if ((Original_odate == null)) { this.Adapter.DeleteCommand.Parameters[46].Value = ((object)(1)); this.Adapter.DeleteCommand.Parameters[47].Value = global::System.DBNull.Value; } else { this.Adapter.DeleteCommand.Parameters[46].Value = ((object)(0)); this.Adapter.DeleteCommand.Parameters[47].Value = ((string)(Original_odate)); } if ((Original_bdate == null)) { this.Adapter.DeleteCommand.Parameters[48].Value = ((object)(1)); this.Adapter.DeleteCommand.Parameters[49].Value = global::System.DBNull.Value; } else { this.Adapter.DeleteCommand.Parameters[48].Value = ((object)(0)); this.Adapter.DeleteCommand.Parameters[49].Value = ((string)(Original_bdate)); } if ((Original_qdate == null)) { this.Adapter.DeleteCommand.Parameters[50].Value = ((object)(1)); this.Adapter.DeleteCommand.Parameters[51].Value = global::System.DBNull.Value; } else { this.Adapter.DeleteCommand.Parameters[50].Value = ((object)(0)); this.Adapter.DeleteCommand.Parameters[51].Value = ((string)(Original_qdate)); } if ((Original_cdate == null)) { this.Adapter.DeleteCommand.Parameters[52].Value = ((object)(1)); this.Adapter.DeleteCommand.Parameters[53].Value = global::System.DBNull.Value; } else { this.Adapter.DeleteCommand.Parameters[52].Value = ((object)(0)); this.Adapter.DeleteCommand.Parameters[53].Value = ((string)(Original_cdate)); } if ((Original_progress.HasValue == true)) { this.Adapter.DeleteCommand.Parameters[54].Value = ((object)(0)); this.Adapter.DeleteCommand.Parameters[55].Value = ((int)(Original_progress.Value)); } else { this.Adapter.DeleteCommand.Parameters[54].Value = ((object)(1)); this.Adapter.DeleteCommand.Parameters[55].Value = global::System.DBNull.Value; } if ((Original_memo == null)) { this.Adapter.DeleteCommand.Parameters[56].Value = ((object)(1)); this.Adapter.DeleteCommand.Parameters[57].Value = global::System.DBNull.Value; } else { this.Adapter.DeleteCommand.Parameters[56].Value = ((object)(0)); this.Adapter.DeleteCommand.Parameters[57].Value = ((string)(Original_memo)); } if ((Original_wuid == null)) { throw new global::System.ArgumentNullException("Original_wuid"); } else { this.Adapter.DeleteCommand.Parameters[58].Value = ((string)(Original_wuid)); } this.Adapter.DeleteCommand.Parameters[59].Value = ((System.DateTime)(Original_wdate)); if ((Original_orderno == null)) { this.Adapter.DeleteCommand.Parameters[60].Value = ((object)(1)); this.Adapter.DeleteCommand.Parameters[61].Value = global::System.DBNull.Value; } else { this.Adapter.DeleteCommand.Parameters[60].Value = ((object)(0)); this.Adapter.DeleteCommand.Parameters[61].Value = ((string)(Original_orderno)); } if ((Original_crdue == null)) { this.Adapter.DeleteCommand.Parameters[62].Value = ((object)(1)); this.Adapter.DeleteCommand.Parameters[63].Value = global::System.DBNull.Value; } else { this.Adapter.DeleteCommand.Parameters[62].Value = ((object)(0)); this.Adapter.DeleteCommand.Parameters[63].Value = ((string)(Original_crdue)); } if ((Original_import.HasValue == true)) { this.Adapter.DeleteCommand.Parameters[64].Value = ((object)(0)); this.Adapter.DeleteCommand.Parameters[65].Value = ((bool)(Original_import.Value)); } else { this.Adapter.DeleteCommand.Parameters[64].Value = ((object)(1)); this.Adapter.DeleteCommand.Parameters[65].Value = global::System.DBNull.Value; } if ((Original_path == null)) { this.Adapter.DeleteCommand.Parameters[66].Value = ((object)(1)); this.Adapter.DeleteCommand.Parameters[67].Value = global::System.DBNull.Value; } else { this.Adapter.DeleteCommand.Parameters[66].Value = ((object)(0)); this.Adapter.DeleteCommand.Parameters[67].Value = ((string)(Original_path)); } if ((Original_userprocess == null)) { this.Adapter.DeleteCommand.Parameters[68].Value = ((object)(1)); this.Adapter.DeleteCommand.Parameters[69].Value = global::System.DBNull.Value; } else { this.Adapter.DeleteCommand.Parameters[68].Value = ((object)(0)); this.Adapter.DeleteCommand.Parameters[69].Value = ((string)(Original_userprocess)); } if ((Original_bCost.HasValue == true)) { this.Adapter.DeleteCommand.Parameters[70].Value = ((object)(0)); this.Adapter.DeleteCommand.Parameters[71].Value = ((bool)(Original_bCost.Value)); } else { this.Adapter.DeleteCommand.Parameters[70].Value = ((object)(1)); this.Adapter.DeleteCommand.Parameters[71].Value = global::System.DBNull.Value; } if ((Original_bFanOut.HasValue == true)) { this.Adapter.DeleteCommand.Parameters[72].Value = ((object)(0)); this.Adapter.DeleteCommand.Parameters[73].Value = ((bool)(Original_bFanOut.Value)); } else { this.Adapter.DeleteCommand.Parameters[72].Value = ((object)(1)); this.Adapter.DeleteCommand.Parameters[73].Value = global::System.DBNull.Value; } if ((Original_div == null)) { this.Adapter.DeleteCommand.Parameters[74].Value = ((object)(1)); this.Adapter.DeleteCommand.Parameters[75].Value = global::System.DBNull.Value; } else { this.Adapter.DeleteCommand.Parameters[74].Value = ((object)(0)); this.Adapter.DeleteCommand.Parameters[75].Value = ((string)(Original_div)); } if ((Original_model == null)) { this.Adapter.DeleteCommand.Parameters[76].Value = ((object)(1)); this.Adapter.DeleteCommand.Parameters[77].Value = global::System.DBNull.Value; } else { this.Adapter.DeleteCommand.Parameters[76].Value = ((object)(0)); this.Adapter.DeleteCommand.Parameters[77].Value = ((string)(Original_model)); } if ((Original_serial == null)) { this.Adapter.DeleteCommand.Parameters[78].Value = ((object)(1)); this.Adapter.DeleteCommand.Parameters[79].Value = global::System.DBNull.Value; } else { this.Adapter.DeleteCommand.Parameters[78].Value = ((object)(0)); this.Adapter.DeleteCommand.Parameters[79].Value = ((string)(Original_serial)); } if ((Original_EB_Site == null)) { this.Adapter.DeleteCommand.Parameters[80].Value = ((object)(1)); this.Adapter.DeleteCommand.Parameters[81].Value = global::System.DBNull.Value; } else { this.Adapter.DeleteCommand.Parameters[80].Value = ((object)(0)); this.Adapter.DeleteCommand.Parameters[81].Value = ((string)(Original_EB_Site)); } if ((Original_EB_Line == null)) { this.Adapter.DeleteCommand.Parameters[82].Value = ((object)(1)); this.Adapter.DeleteCommand.Parameters[83].Value = global::System.DBNull.Value; } else { this.Adapter.DeleteCommand.Parameters[82].Value = ((object)(0)); this.Adapter.DeleteCommand.Parameters[83].Value = ((string)(Original_EB_Line)); } if ((Original_EB_Team == null)) { this.Adapter.DeleteCommand.Parameters[84].Value = ((object)(1)); this.Adapter.DeleteCommand.Parameters[85].Value = global::System.DBNull.Value; } else { this.Adapter.DeleteCommand.Parameters[84].Value = ((object)(0)); this.Adapter.DeleteCommand.Parameters[85].Value = ((string)(Original_EB_Team)); } if ((Original_EB_Model == null)) { this.Adapter.DeleteCommand.Parameters[86].Value = ((object)(1)); this.Adapter.DeleteCommand.Parameters[87].Value = global::System.DBNull.Value; } else { this.Adapter.DeleteCommand.Parameters[86].Value = ((object)(0)); this.Adapter.DeleteCommand.Parameters[87].Value = ((string)(Original_EB_Model)); } if ((Original_EB_OutSourceName == null)) { this.Adapter.DeleteCommand.Parameters[88].Value = ((object)(1)); this.Adapter.DeleteCommand.Parameters[89].Value = global::System.DBNull.Value; } else { this.Adapter.DeleteCommand.Parameters[88].Value = ((object)(0)); this.Adapter.DeleteCommand.Parameters[89].Value = ((string)(Original_EB_OutSourceName)); } if ((Original_EB_RepairTime.HasValue == true)) { this.Adapter.DeleteCommand.Parameters[90].Value = ((object)(0)); this.Adapter.DeleteCommand.Parameters[91].Value = ((double)(Original_EB_RepairTime.Value)); } else { this.Adapter.DeleteCommand.Parameters[90].Value = ((object)(1)); this.Adapter.DeleteCommand.Parameters[91].Value = global::System.DBNull.Value; } if ((Original_EB_ConstNew.HasValue == true)) { this.Adapter.DeleteCommand.Parameters[92].Value = ((object)(0)); this.Adapter.DeleteCommand.Parameters[93].Value = ((double)(Original_EB_ConstNew.Value)); } else { this.Adapter.DeleteCommand.Parameters[92].Value = ((object)(1)); this.Adapter.DeleteCommand.Parameters[93].Value = global::System.DBNull.Value; } if ((Original_EB_BoardName == null)) { this.Adapter.DeleteCommand.Parameters[94].Value = ((object)(1)); this.Adapter.DeleteCommand.Parameters[95].Value = global::System.DBNull.Value; } else { this.Adapter.DeleteCommand.Parameters[94].Value = ((object)(0)); this.Adapter.DeleteCommand.Parameters[95].Value = ((string)(Original_EB_BoardName)); } if ((Original_bAlert.HasValue == true)) { this.Adapter.DeleteCommand.Parameters[96].Value = ((object)(0)); this.Adapter.DeleteCommand.Parameters[97].Value = ((bool)(Original_bAlert.Value)); } else { this.Adapter.DeleteCommand.Parameters[96].Value = ((object)(1)); this.Adapter.DeleteCommand.Parameters[97].Value = global::System.DBNull.Value; } if ((Original_championid == null)) { this.Adapter.DeleteCommand.Parameters[98].Value = ((object)(1)); this.Adapter.DeleteCommand.Parameters[99].Value = global::System.DBNull.Value; } else { this.Adapter.DeleteCommand.Parameters[98].Value = ((object)(0)); this.Adapter.DeleteCommand.Parameters[99].Value = ((string)(Original_championid)); } if ((Original_designid == null)) { this.Adapter.DeleteCommand.Parameters[100].Value = ((object)(1)); this.Adapter.DeleteCommand.Parameters[101].Value = global::System.DBNull.Value; } else { this.Adapter.DeleteCommand.Parameters[100].Value = ((object)(0)); this.Adapter.DeleteCommand.Parameters[101].Value = ((string)(Original_designid)); } if ((Original_assemblyid == null)) { this.Adapter.DeleteCommand.Parameters[102].Value = ((object)(1)); this.Adapter.DeleteCommand.Parameters[103].Value = global::System.DBNull.Value; } else { this.Adapter.DeleteCommand.Parameters[102].Value = ((object)(0)); this.Adapter.DeleteCommand.Parameters[103].Value = ((string)(Original_assemblyid)); } if ((Original_epanelid == null)) { this.Adapter.DeleteCommand.Parameters[104].Value = ((object)(1)); this.Adapter.DeleteCommand.Parameters[105].Value = global::System.DBNull.Value; } else { this.Adapter.DeleteCommand.Parameters[104].Value = ((object)(0)); this.Adapter.DeleteCommand.Parameters[105].Value = ((string)(Original_epanelid)); } if ((Original_softwareid == null)) { this.Adapter.DeleteCommand.Parameters[106].Value = ((object)(1)); this.Adapter.DeleteCommand.Parameters[107].Value = global::System.DBNull.Value; } else { this.Adapter.DeleteCommand.Parameters[106].Value = ((object)(0)); this.Adapter.DeleteCommand.Parameters[107].Value = ((string)(Original_softwareid)); } if ((Original_userAssembly == null)) { this.Adapter.DeleteCommand.Parameters[108].Value = ((object)(1)); this.Adapter.DeleteCommand.Parameters[109].Value = global::System.DBNull.Value; } else { this.Adapter.DeleteCommand.Parameters[108].Value = ((object)(0)); this.Adapter.DeleteCommand.Parameters[109].Value = ((string)(Original_userAssembly)); } if ((Original_ReqLine == null)) { this.Adapter.DeleteCommand.Parameters[110].Value = ((object)(1)); this.Adapter.DeleteCommand.Parameters[111].Value = global::System.DBNull.Value; } else { this.Adapter.DeleteCommand.Parameters[110].Value = ((object)(0)); this.Adapter.DeleteCommand.Parameters[111].Value = ((string)(Original_ReqLine)); } if ((Original_ReqSite == null)) { this.Adapter.DeleteCommand.Parameters[112].Value = ((object)(1)); this.Adapter.DeleteCommand.Parameters[113].Value = global::System.DBNull.Value; } else { this.Adapter.DeleteCommand.Parameters[112].Value = ((object)(0)); this.Adapter.DeleteCommand.Parameters[113].Value = ((string)(Original_ReqSite)); } if ((Original_ReqPackage == null)) { this.Adapter.DeleteCommand.Parameters[114].Value = ((object)(1)); this.Adapter.DeleteCommand.Parameters[115].Value = global::System.DBNull.Value; } else { this.Adapter.DeleteCommand.Parameters[114].Value = ((object)(0)); this.Adapter.DeleteCommand.Parameters[115].Value = ((string)(Original_ReqPackage)); } if ((Original_ReqPlant == null)) { this.Adapter.DeleteCommand.Parameters[116].Value = ((object)(1)); this.Adapter.DeleteCommand.Parameters[117].Value = global::System.DBNull.Value; } else { this.Adapter.DeleteCommand.Parameters[116].Value = ((object)(0)); this.Adapter.DeleteCommand.Parameters[117].Value = ((string)(Original_ReqPlant)); } if ((Original_pno.HasValue == true)) { this.Adapter.DeleteCommand.Parameters[118].Value = ((object)(0)); this.Adapter.DeleteCommand.Parameters[119].Value = ((int)(Original_pno.Value)); } else { this.Adapter.DeleteCommand.Parameters[118].Value = ((object)(1)); this.Adapter.DeleteCommand.Parameters[119].Value = global::System.DBNull.Value; } if ((Original_kdate == null)) { this.Adapter.DeleteCommand.Parameters[120].Value = ((object)(1)); this.Adapter.DeleteCommand.Parameters[121].Value = global::System.DBNull.Value; } else { this.Adapter.DeleteCommand.Parameters[120].Value = ((object)(0)); this.Adapter.DeleteCommand.Parameters[121].Value = ((string)(Original_kdate)); } if ((Original_jasmin.HasValue == true)) { this.Adapter.DeleteCommand.Parameters[122].Value = ((object)(0)); this.Adapter.DeleteCommand.Parameters[123].Value = ((int)(Original_jasmin.Value)); } else { this.Adapter.DeleteCommand.Parameters[122].Value = ((object)(1)); this.Adapter.DeleteCommand.Parameters[123].Value = global::System.DBNull.Value; } if ((Original_sfi.HasValue == true)) { this.Adapter.DeleteCommand.Parameters[124].Value = ((object)(0)); this.Adapter.DeleteCommand.Parameters[125].Value = ((double)(Original_sfi.Value)); } else { this.Adapter.DeleteCommand.Parameters[124].Value = ((object)(1)); this.Adapter.DeleteCommand.Parameters[125].Value = global::System.DBNull.Value; } if ((Original_sfi_type == null)) { this.Adapter.DeleteCommand.Parameters[126].Value = ((object)(1)); this.Adapter.DeleteCommand.Parameters[127].Value = global::System.DBNull.Value; } else { this.Adapter.DeleteCommand.Parameters[126].Value = ((object)(0)); this.Adapter.DeleteCommand.Parameters[127].Value = ((string)(Original_sfi_type)); } if ((Original_sfi_savetime.HasValue == true)) { this.Adapter.DeleteCommand.Parameters[128].Value = ((object)(0)); this.Adapter.DeleteCommand.Parameters[129].Value = ((double)(Original_sfi_savetime.Value)); } else { this.Adapter.DeleteCommand.Parameters[128].Value = ((object)(1)); this.Adapter.DeleteCommand.Parameters[129].Value = global::System.DBNull.Value; } if ((Original_sfi_savecount.HasValue == true)) { this.Adapter.DeleteCommand.Parameters[130].Value = ((object)(0)); this.Adapter.DeleteCommand.Parameters[131].Value = ((double)(Original_sfi_savecount.Value)); } else { this.Adapter.DeleteCommand.Parameters[130].Value = ((object)(1)); this.Adapter.DeleteCommand.Parameters[131].Value = global::System.DBNull.Value; } if ((Original_sfi_shiftcount.HasValue == true)) { this.Adapter.DeleteCommand.Parameters[132].Value = ((object)(0)); this.Adapter.DeleteCommand.Parameters[133].Value = ((double)(Original_sfi_shiftcount.Value)); } else { this.Adapter.DeleteCommand.Parameters[132].Value = ((object)(1)); this.Adapter.DeleteCommand.Parameters[133].Value = global::System.DBNull.Value; } if ((Original_sfic.HasValue == true)) { this.Adapter.DeleteCommand.Parameters[134].Value = ((object)(0)); this.Adapter.DeleteCommand.Parameters[135].Value = ((double)(Original_sfic.Value)); } else { this.Adapter.DeleteCommand.Parameters[134].Value = ((object)(1)); this.Adapter.DeleteCommand.Parameters[135].Value = global::System.DBNull.Value; } if ((Original_bHighlight.HasValue == true)) { this.Adapter.DeleteCommand.Parameters[136].Value = ((object)(0)); this.Adapter.DeleteCommand.Parameters[137].Value = ((bool)(Original_bHighlight.Value)); } else { this.Adapter.DeleteCommand.Parameters[136].Value = ((object)(1)); this.Adapter.DeleteCommand.Parameters[137].Value = global::System.DBNull.Value; } if ((Original_effect_tangible == null)) { this.Adapter.DeleteCommand.Parameters[138].Value = ((object)(1)); this.Adapter.DeleteCommand.Parameters[139].Value = global::System.DBNull.Value; } else { this.Adapter.DeleteCommand.Parameters[138].Value = ((object)(0)); this.Adapter.DeleteCommand.Parameters[139].Value = ((string)(Original_effect_tangible)); } if ((Original_effect_intangible == null)) { this.Adapter.DeleteCommand.Parameters[140].Value = ((object)(1)); this.Adapter.DeleteCommand.Parameters[141].Value = global::System.DBNull.Value; } else { this.Adapter.DeleteCommand.Parameters[140].Value = ((object)(0)); this.Adapter.DeleteCommand.Parameters[141].Value = ((string)(Original_effect_intangible)); } if ((Original_bmajoritem.HasValue == true)) { this.Adapter.DeleteCommand.Parameters[142].Value = ((object)(0)); this.Adapter.DeleteCommand.Parameters[143].Value = ((bool)(Original_bmajoritem.Value)); } else { this.Adapter.DeleteCommand.Parameters[142].Value = ((object)(1)); this.Adapter.DeleteCommand.Parameters[143].Value = global::System.DBNull.Value; } if ((Original_cramount.HasValue == true)) { this.Adapter.DeleteCommand.Parameters[144].Value = ((object)(0)); this.Adapter.DeleteCommand.Parameters[145].Value = ((decimal)(Original_cramount.Value)); } else { this.Adapter.DeleteCommand.Parameters[144].Value = ((object)(1)); this.Adapter.DeleteCommand.Parameters[145].Value = global::System.DBNull.Value; } global::System.Data.ConnectionState previousConnectionState = this.Adapter.DeleteCommand.Connection.State; if (((this.Adapter.DeleteCommand.Connection.State & global::System.Data.ConnectionState.Open) != global::System.Data.ConnectionState.Open)) { this.Adapter.DeleteCommand.Connection.Open(); } try { int returnValue = this.Adapter.DeleteCommand.ExecuteNonQuery(); return returnValue; } finally { if ((previousConnectionState == global::System.Data.ConnectionState.Closed)) { this.Adapter.DeleteCommand.Connection.Close(); } } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")] [global::System.ComponentModel.DataObjectMethodAttribute(global::System.ComponentModel.DataObjectMethodType.Insert, true)] public virtual int Insert( global::System.Nullable pidx, string gcode, global::System.Nullable isdel, string category, string status, string asset, global::System.Nullable level, global::System.Nullable rev, string process, string part, string pdate, string name, string userManager, string usermain, string usersub, string userhw2, string reqstaff, global::System.Nullable costo, global::System.Nullable costn, global::System.Nullable cnt, string remark_req, string remark_ans, string sdate, string ddate, string edate, string odate, string bdate, string qdate, string cdate, global::System.Nullable progress, string memo, string wuid, System.DateTime wdate, string orderno, string crdue, global::System.Nullable import, string path, string userprocess, string CMP_Background, string CMP_Description, string CMP_Before, string CMP_After, string CMP_After2, global::System.Nullable bCost, global::System.Nullable bFanOut, string div, string model, string serial, string EB_Site, string EB_Line, string EB_Team, string EB_Model, string EB_OutSourceName, global::System.Nullable EB_RepairTime, global::System.Nullable EB_ConstNew, string EB_BoardName, global::System.Nullable bAlert, string championid, string designid, string assemblyid, string epanelid, string softwareid, string userAssembly, string ReqLine, string ReqSite, string ReqPackage, string ReqPlant, global::System.Nullable pno, string kdate, global::System.Nullable jasmin, global::System.Nullable sfi, string sfi_type, global::System.Nullable sfi_savetime, global::System.Nullable sfi_savecount, global::System.Nullable sfi_shiftcount, global::System.Nullable sfic, global::System.Nullable bHighlight, string effect_tangible, string effect_intangible, global::System.Nullable bmajoritem, global::System.Nullable cramount) { if ((pidx.HasValue == true)) { this.Adapter.InsertCommand.Parameters[0].Value = ((int)(pidx.Value)); } else { this.Adapter.InsertCommand.Parameters[0].Value = global::System.DBNull.Value; } if ((gcode == null)) { throw new global::System.ArgumentNullException("gcode"); } else { this.Adapter.InsertCommand.Parameters[1].Value = ((string)(gcode)); } if ((isdel.HasValue == true)) { this.Adapter.InsertCommand.Parameters[2].Value = ((bool)(isdel.Value)); } else { this.Adapter.InsertCommand.Parameters[2].Value = global::System.DBNull.Value; } if ((category == null)) { this.Adapter.InsertCommand.Parameters[3].Value = global::System.DBNull.Value; } else { this.Adapter.InsertCommand.Parameters[3].Value = ((string)(category)); } if ((status == null)) { this.Adapter.InsertCommand.Parameters[4].Value = global::System.DBNull.Value; } else { this.Adapter.InsertCommand.Parameters[4].Value = ((string)(status)); } if ((asset == null)) { this.Adapter.InsertCommand.Parameters[5].Value = global::System.DBNull.Value; } else { this.Adapter.InsertCommand.Parameters[5].Value = ((string)(asset)); } if ((level.HasValue == true)) { this.Adapter.InsertCommand.Parameters[6].Value = ((int)(level.Value)); } else { this.Adapter.InsertCommand.Parameters[6].Value = global::System.DBNull.Value; } if ((rev.HasValue == true)) { this.Adapter.InsertCommand.Parameters[7].Value = ((int)(rev.Value)); } else { this.Adapter.InsertCommand.Parameters[7].Value = global::System.DBNull.Value; } if ((process == null)) { this.Adapter.InsertCommand.Parameters[8].Value = global::System.DBNull.Value; } else { this.Adapter.InsertCommand.Parameters[8].Value = ((string)(process)); } if ((part == null)) { this.Adapter.InsertCommand.Parameters[9].Value = global::System.DBNull.Value; } else { this.Adapter.InsertCommand.Parameters[9].Value = ((string)(part)); } if ((pdate == null)) { this.Adapter.InsertCommand.Parameters[10].Value = global::System.DBNull.Value; } else { this.Adapter.InsertCommand.Parameters[10].Value = ((string)(pdate)); } if ((name == null)) { this.Adapter.InsertCommand.Parameters[11].Value = global::System.DBNull.Value; } else { this.Adapter.InsertCommand.Parameters[11].Value = ((string)(name)); } if ((userManager == null)) { this.Adapter.InsertCommand.Parameters[12].Value = global::System.DBNull.Value; } else { this.Adapter.InsertCommand.Parameters[12].Value = ((string)(userManager)); } if ((usermain == null)) { this.Adapter.InsertCommand.Parameters[13].Value = global::System.DBNull.Value; } else { this.Adapter.InsertCommand.Parameters[13].Value = ((string)(usermain)); } if ((usersub == null)) { this.Adapter.InsertCommand.Parameters[14].Value = global::System.DBNull.Value; } else { this.Adapter.InsertCommand.Parameters[14].Value = ((string)(usersub)); } if ((userhw2 == null)) { this.Adapter.InsertCommand.Parameters[15].Value = global::System.DBNull.Value; } else { this.Adapter.InsertCommand.Parameters[15].Value = ((string)(userhw2)); } if ((reqstaff == null)) { this.Adapter.InsertCommand.Parameters[16].Value = global::System.DBNull.Value; } else { this.Adapter.InsertCommand.Parameters[16].Value = ((string)(reqstaff)); } if ((costo.HasValue == true)) { this.Adapter.InsertCommand.Parameters[17].Value = ((double)(costo.Value)); } else { this.Adapter.InsertCommand.Parameters[17].Value = global::System.DBNull.Value; } if ((costn.HasValue == true)) { this.Adapter.InsertCommand.Parameters[18].Value = ((double)(costn.Value)); } else { this.Adapter.InsertCommand.Parameters[18].Value = global::System.DBNull.Value; } if ((cnt.HasValue == true)) { this.Adapter.InsertCommand.Parameters[19].Value = ((int)(cnt.Value)); } else { this.Adapter.InsertCommand.Parameters[19].Value = global::System.DBNull.Value; } if ((remark_req == null)) { this.Adapter.InsertCommand.Parameters[20].Value = global::System.DBNull.Value; } else { this.Adapter.InsertCommand.Parameters[20].Value = ((string)(remark_req)); } if ((remark_ans == null)) { this.Adapter.InsertCommand.Parameters[21].Value = global::System.DBNull.Value; } else { this.Adapter.InsertCommand.Parameters[21].Value = ((string)(remark_ans)); } if ((sdate == null)) { this.Adapter.InsertCommand.Parameters[22].Value = global::System.DBNull.Value; } else { this.Adapter.InsertCommand.Parameters[22].Value = ((string)(sdate)); } if ((ddate == null)) { this.Adapter.InsertCommand.Parameters[23].Value = global::System.DBNull.Value; } else { this.Adapter.InsertCommand.Parameters[23].Value = ((string)(ddate)); } if ((edate == null)) { this.Adapter.InsertCommand.Parameters[24].Value = global::System.DBNull.Value; } else { this.Adapter.InsertCommand.Parameters[24].Value = ((string)(edate)); } if ((odate == null)) { this.Adapter.InsertCommand.Parameters[25].Value = global::System.DBNull.Value; } else { this.Adapter.InsertCommand.Parameters[25].Value = ((string)(odate)); } if ((bdate == null)) { this.Adapter.InsertCommand.Parameters[26].Value = global::System.DBNull.Value; } else { this.Adapter.InsertCommand.Parameters[26].Value = ((string)(bdate)); } if ((qdate == null)) { this.Adapter.InsertCommand.Parameters[27].Value = global::System.DBNull.Value; } else { this.Adapter.InsertCommand.Parameters[27].Value = ((string)(qdate)); } if ((cdate == null)) { this.Adapter.InsertCommand.Parameters[28].Value = global::System.DBNull.Value; } else { this.Adapter.InsertCommand.Parameters[28].Value = ((string)(cdate)); } if ((progress.HasValue == true)) { this.Adapter.InsertCommand.Parameters[29].Value = ((int)(progress.Value)); } else { this.Adapter.InsertCommand.Parameters[29].Value = global::System.DBNull.Value; } if ((memo == null)) { this.Adapter.InsertCommand.Parameters[30].Value = global::System.DBNull.Value; } else { this.Adapter.InsertCommand.Parameters[30].Value = ((string)(memo)); } if ((wuid == null)) { throw new global::System.ArgumentNullException("wuid"); } else { this.Adapter.InsertCommand.Parameters[31].Value = ((string)(wuid)); } this.Adapter.InsertCommand.Parameters[32].Value = ((System.DateTime)(wdate)); if ((orderno == null)) { this.Adapter.InsertCommand.Parameters[33].Value = global::System.DBNull.Value; } else { this.Adapter.InsertCommand.Parameters[33].Value = ((string)(orderno)); } if ((crdue == null)) { this.Adapter.InsertCommand.Parameters[34].Value = global::System.DBNull.Value; } else { this.Adapter.InsertCommand.Parameters[34].Value = ((string)(crdue)); } if ((import.HasValue == true)) { this.Adapter.InsertCommand.Parameters[35].Value = ((bool)(import.Value)); } else { this.Adapter.InsertCommand.Parameters[35].Value = global::System.DBNull.Value; } if ((path == null)) { this.Adapter.InsertCommand.Parameters[36].Value = global::System.DBNull.Value; } else { this.Adapter.InsertCommand.Parameters[36].Value = ((string)(path)); } if ((userprocess == null)) { this.Adapter.InsertCommand.Parameters[37].Value = global::System.DBNull.Value; } else { this.Adapter.InsertCommand.Parameters[37].Value = ((string)(userprocess)); } if ((CMP_Background == null)) { this.Adapter.InsertCommand.Parameters[38].Value = global::System.DBNull.Value; } else { this.Adapter.InsertCommand.Parameters[38].Value = ((string)(CMP_Background)); } if ((CMP_Description == null)) { this.Adapter.InsertCommand.Parameters[39].Value = global::System.DBNull.Value; } else { this.Adapter.InsertCommand.Parameters[39].Value = ((string)(CMP_Description)); } if ((CMP_Before == null)) { this.Adapter.InsertCommand.Parameters[40].Value = global::System.DBNull.Value; } else { this.Adapter.InsertCommand.Parameters[40].Value = ((string)(CMP_Before)); } if ((CMP_After == null)) { this.Adapter.InsertCommand.Parameters[41].Value = global::System.DBNull.Value; } else { this.Adapter.InsertCommand.Parameters[41].Value = ((string)(CMP_After)); } if ((CMP_After2 == null)) { this.Adapter.InsertCommand.Parameters[42].Value = global::System.DBNull.Value; } else { this.Adapter.InsertCommand.Parameters[42].Value = ((string)(CMP_After2)); } if ((bCost.HasValue == true)) { this.Adapter.InsertCommand.Parameters[43].Value = ((bool)(bCost.Value)); } else { this.Adapter.InsertCommand.Parameters[43].Value = global::System.DBNull.Value; } if ((bFanOut.HasValue == true)) { this.Adapter.InsertCommand.Parameters[44].Value = ((bool)(bFanOut.Value)); } else { this.Adapter.InsertCommand.Parameters[44].Value = global::System.DBNull.Value; } if ((div == null)) { this.Adapter.InsertCommand.Parameters[45].Value = global::System.DBNull.Value; } else { this.Adapter.InsertCommand.Parameters[45].Value = ((string)(div)); } if ((model == null)) { this.Adapter.InsertCommand.Parameters[46].Value = global::System.DBNull.Value; } else { this.Adapter.InsertCommand.Parameters[46].Value = ((string)(model)); } if ((serial == null)) { this.Adapter.InsertCommand.Parameters[47].Value = global::System.DBNull.Value; } else { this.Adapter.InsertCommand.Parameters[47].Value = ((string)(serial)); } if ((EB_Site == null)) { this.Adapter.InsertCommand.Parameters[48].Value = global::System.DBNull.Value; } else { this.Adapter.InsertCommand.Parameters[48].Value = ((string)(EB_Site)); } if ((EB_Line == null)) { this.Adapter.InsertCommand.Parameters[49].Value = global::System.DBNull.Value; } else { this.Adapter.InsertCommand.Parameters[49].Value = ((string)(EB_Line)); } if ((EB_Team == null)) { this.Adapter.InsertCommand.Parameters[50].Value = global::System.DBNull.Value; } else { this.Adapter.InsertCommand.Parameters[50].Value = ((string)(EB_Team)); } if ((EB_Model == null)) { this.Adapter.InsertCommand.Parameters[51].Value = global::System.DBNull.Value; } else { this.Adapter.InsertCommand.Parameters[51].Value = ((string)(EB_Model)); } if ((EB_OutSourceName == null)) { this.Adapter.InsertCommand.Parameters[52].Value = global::System.DBNull.Value; } else { this.Adapter.InsertCommand.Parameters[52].Value = ((string)(EB_OutSourceName)); } if ((EB_RepairTime.HasValue == true)) { this.Adapter.InsertCommand.Parameters[53].Value = ((double)(EB_RepairTime.Value)); } else { this.Adapter.InsertCommand.Parameters[53].Value = global::System.DBNull.Value; } if ((EB_ConstNew.HasValue == true)) { this.Adapter.InsertCommand.Parameters[54].Value = ((double)(EB_ConstNew.Value)); } else { this.Adapter.InsertCommand.Parameters[54].Value = global::System.DBNull.Value; } if ((EB_BoardName == null)) { this.Adapter.InsertCommand.Parameters[55].Value = global::System.DBNull.Value; } else { this.Adapter.InsertCommand.Parameters[55].Value = ((string)(EB_BoardName)); } if ((bAlert.HasValue == true)) { this.Adapter.InsertCommand.Parameters[56].Value = ((bool)(bAlert.Value)); } else { this.Adapter.InsertCommand.Parameters[56].Value = global::System.DBNull.Value; } if ((championid == null)) { this.Adapter.InsertCommand.Parameters[57].Value = global::System.DBNull.Value; } else { this.Adapter.InsertCommand.Parameters[57].Value = ((string)(championid)); } if ((designid == null)) { this.Adapter.InsertCommand.Parameters[58].Value = global::System.DBNull.Value; } else { this.Adapter.InsertCommand.Parameters[58].Value = ((string)(designid)); } if ((assemblyid == null)) { this.Adapter.InsertCommand.Parameters[59].Value = global::System.DBNull.Value; } else { this.Adapter.InsertCommand.Parameters[59].Value = ((string)(assemblyid)); } if ((epanelid == null)) { this.Adapter.InsertCommand.Parameters[60].Value = global::System.DBNull.Value; } else { this.Adapter.InsertCommand.Parameters[60].Value = ((string)(epanelid)); } if ((softwareid == null)) { this.Adapter.InsertCommand.Parameters[61].Value = global::System.DBNull.Value; } else { this.Adapter.InsertCommand.Parameters[61].Value = ((string)(softwareid)); } if ((userAssembly == null)) { this.Adapter.InsertCommand.Parameters[62].Value = global::System.DBNull.Value; } else { this.Adapter.InsertCommand.Parameters[62].Value = ((string)(userAssembly)); } if ((ReqLine == null)) { this.Adapter.InsertCommand.Parameters[63].Value = global::System.DBNull.Value; } else { this.Adapter.InsertCommand.Parameters[63].Value = ((string)(ReqLine)); } if ((ReqSite == null)) { this.Adapter.InsertCommand.Parameters[64].Value = global::System.DBNull.Value; } else { this.Adapter.InsertCommand.Parameters[64].Value = ((string)(ReqSite)); } if ((ReqPackage == null)) { this.Adapter.InsertCommand.Parameters[65].Value = global::System.DBNull.Value; } else { this.Adapter.InsertCommand.Parameters[65].Value = ((string)(ReqPackage)); } if ((ReqPlant == null)) { this.Adapter.InsertCommand.Parameters[66].Value = global::System.DBNull.Value; } else { this.Adapter.InsertCommand.Parameters[66].Value = ((string)(ReqPlant)); } if ((pno.HasValue == true)) { this.Adapter.InsertCommand.Parameters[67].Value = ((int)(pno.Value)); } else { this.Adapter.InsertCommand.Parameters[67].Value = global::System.DBNull.Value; } if ((kdate == null)) { this.Adapter.InsertCommand.Parameters[68].Value = global::System.DBNull.Value; } else { this.Adapter.InsertCommand.Parameters[68].Value = ((string)(kdate)); } if ((jasmin.HasValue == true)) { this.Adapter.InsertCommand.Parameters[69].Value = ((int)(jasmin.Value)); } else { this.Adapter.InsertCommand.Parameters[69].Value = global::System.DBNull.Value; } if ((sfi.HasValue == true)) { this.Adapter.InsertCommand.Parameters[70].Value = ((double)(sfi.Value)); } else { this.Adapter.InsertCommand.Parameters[70].Value = global::System.DBNull.Value; } if ((sfi_type == null)) { this.Adapter.InsertCommand.Parameters[71].Value = global::System.DBNull.Value; } else { this.Adapter.InsertCommand.Parameters[71].Value = ((string)(sfi_type)); } if ((sfi_savetime.HasValue == true)) { this.Adapter.InsertCommand.Parameters[72].Value = ((double)(sfi_savetime.Value)); } else { this.Adapter.InsertCommand.Parameters[72].Value = global::System.DBNull.Value; } if ((sfi_savecount.HasValue == true)) { this.Adapter.InsertCommand.Parameters[73].Value = ((double)(sfi_savecount.Value)); } else { this.Adapter.InsertCommand.Parameters[73].Value = global::System.DBNull.Value; } if ((sfi_shiftcount.HasValue == true)) { this.Adapter.InsertCommand.Parameters[74].Value = ((double)(sfi_shiftcount.Value)); } else { this.Adapter.InsertCommand.Parameters[74].Value = global::System.DBNull.Value; } if ((sfic.HasValue == true)) { this.Adapter.InsertCommand.Parameters[75].Value = ((double)(sfic.Value)); } else { this.Adapter.InsertCommand.Parameters[75].Value = global::System.DBNull.Value; } if ((bHighlight.HasValue == true)) { this.Adapter.InsertCommand.Parameters[76].Value = ((bool)(bHighlight.Value)); } else { this.Adapter.InsertCommand.Parameters[76].Value = global::System.DBNull.Value; } if ((effect_tangible == null)) { this.Adapter.InsertCommand.Parameters[77].Value = global::System.DBNull.Value; } else { this.Adapter.InsertCommand.Parameters[77].Value = ((string)(effect_tangible)); } if ((effect_intangible == null)) { this.Adapter.InsertCommand.Parameters[78].Value = global::System.DBNull.Value; } else { this.Adapter.InsertCommand.Parameters[78].Value = ((string)(effect_intangible)); } if ((bmajoritem.HasValue == true)) { this.Adapter.InsertCommand.Parameters[79].Value = ((bool)(bmajoritem.Value)); } else { this.Adapter.InsertCommand.Parameters[79].Value = global::System.DBNull.Value; } if ((cramount.HasValue == true)) { this.Adapter.InsertCommand.Parameters[80].Value = ((decimal)(cramount.Value)); } else { this.Adapter.InsertCommand.Parameters[80].Value = global::System.DBNull.Value; } global::System.Data.ConnectionState previousConnectionState = this.Adapter.InsertCommand.Connection.State; if (((this.Adapter.InsertCommand.Connection.State & global::System.Data.ConnectionState.Open) != global::System.Data.ConnectionState.Open)) { this.Adapter.InsertCommand.Connection.Open(); } try { int returnValue = this.Adapter.InsertCommand.ExecuteNonQuery(); return returnValue; } finally { if ((previousConnectionState == global::System.Data.ConnectionState.Closed)) { this.Adapter.InsertCommand.Connection.Close(); } } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")] [global::System.ComponentModel.DataObjectMethodAttribute(global::System.ComponentModel.DataObjectMethodType.Update, true)] public virtual int Update( global::System.Nullable pidx, string gcode, global::System.Nullable isdel, string category, string status, string asset, global::System.Nullable level, global::System.Nullable rev, string process, string part, string pdate, string name, string userManager, string usermain, string usersub, string userhw2, string reqstaff, global::System.Nullable costo, global::System.Nullable costn, global::System.Nullable cnt, string remark_req, string remark_ans, string sdate, string ddate, string edate, string odate, string bdate, string qdate, string cdate, global::System.Nullable progress, string memo, string wuid, System.DateTime wdate, string orderno, string crdue, global::System.Nullable import, string path, string userprocess, string CMP_Background, string CMP_Description, string CMP_Before, string CMP_After, string CMP_After2, global::System.Nullable bCost, global::System.Nullable bFanOut, string div, string model, string serial, string EB_Site, string EB_Line, string EB_Team, string EB_Model, string EB_OutSourceName, global::System.Nullable EB_RepairTime, global::System.Nullable EB_ConstNew, string EB_BoardName, global::System.Nullable bAlert, string championid, string designid, string assemblyid, string epanelid, string softwareid, string userAssembly, string ReqLine, string ReqSite, string ReqPackage, string ReqPlant, global::System.Nullable pno, string kdate, global::System.Nullable jasmin, global::System.Nullable sfi, string sfi_type, global::System.Nullable sfi_savetime, global::System.Nullable sfi_savecount, global::System.Nullable sfi_shiftcount, global::System.Nullable sfic, global::System.Nullable bHighlight, string effect_tangible, string effect_intangible, global::System.Nullable bmajoritem, global::System.Nullable cramount, int Original_idx, global::System.Nullable Original_pidx, string Original_gcode, global::System.Nullable Original_isdel, string Original_category, string Original_status, string Original_asset, global::System.Nullable Original_level, global::System.Nullable Original_rev, string Original_process, string Original_part, string Original_pdate, string Original_name, string Original_userManager, string Original_usermain, string Original_usersub, string Original_userhw2, string Original_reqstaff, global::System.Nullable Original_costo, global::System.Nullable Original_costn, global::System.Nullable Original_cnt, string Original_sdate, string Original_ddate, string Original_edate, string Original_odate, string Original_bdate, string Original_qdate, string Original_cdate, global::System.Nullable Original_progress, string Original_memo, string Original_wuid, System.DateTime Original_wdate, string Original_orderno, string Original_crdue, global::System.Nullable Original_import, string Original_path, string Original_userprocess, global::System.Nullable Original_bCost, global::System.Nullable Original_bFanOut, string Original_div, string Original_model, string Original_serial, string Original_EB_Site, string Original_EB_Line, string Original_EB_Team, string Original_EB_Model, string Original_EB_OutSourceName, global::System.Nullable Original_EB_RepairTime, global::System.Nullable Original_EB_ConstNew, string Original_EB_BoardName, global::System.Nullable Original_bAlert, string Original_championid, string Original_designid, string Original_assemblyid, string Original_epanelid, string Original_softwareid, string Original_userAssembly, string Original_ReqLine, string Original_ReqSite, string Original_ReqPackage, string Original_ReqPlant, global::System.Nullable Original_pno, string Original_kdate, global::System.Nullable Original_jasmin, global::System.Nullable Original_sfi, string Original_sfi_type, global::System.Nullable Original_sfi_savetime, global::System.Nullable Original_sfi_savecount, global::System.Nullable Original_sfi_shiftcount, global::System.Nullable Original_sfic, global::System.Nullable Original_bHighlight, string Original_effect_tangible, string Original_effect_intangible, global::System.Nullable Original_bmajoritem, global::System.Nullable Original_cramount, int idx) { if ((pidx.HasValue == true)) { this.Adapter.UpdateCommand.Parameters[0].Value = ((int)(pidx.Value)); } else { this.Adapter.UpdateCommand.Parameters[0].Value = global::System.DBNull.Value; } if ((gcode == null)) { throw new global::System.ArgumentNullException("gcode"); } else { this.Adapter.UpdateCommand.Parameters[1].Value = ((string)(gcode)); } if ((isdel.HasValue == true)) { this.Adapter.UpdateCommand.Parameters[2].Value = ((bool)(isdel.Value)); } else { this.Adapter.UpdateCommand.Parameters[2].Value = global::System.DBNull.Value; } if ((category == null)) { this.Adapter.UpdateCommand.Parameters[3].Value = global::System.DBNull.Value; } else { this.Adapter.UpdateCommand.Parameters[3].Value = ((string)(category)); } if ((status == null)) { this.Adapter.UpdateCommand.Parameters[4].Value = global::System.DBNull.Value; } else { this.Adapter.UpdateCommand.Parameters[4].Value = ((string)(status)); } if ((asset == null)) { this.Adapter.UpdateCommand.Parameters[5].Value = global::System.DBNull.Value; } else { this.Adapter.UpdateCommand.Parameters[5].Value = ((string)(asset)); } if ((level.HasValue == true)) { this.Adapter.UpdateCommand.Parameters[6].Value = ((int)(level.Value)); } else { this.Adapter.UpdateCommand.Parameters[6].Value = global::System.DBNull.Value; } if ((rev.HasValue == true)) { this.Adapter.UpdateCommand.Parameters[7].Value = ((int)(rev.Value)); } else { this.Adapter.UpdateCommand.Parameters[7].Value = global::System.DBNull.Value; } if ((process == null)) { this.Adapter.UpdateCommand.Parameters[8].Value = global::System.DBNull.Value; } else { this.Adapter.UpdateCommand.Parameters[8].Value = ((string)(process)); } if ((part == null)) { this.Adapter.UpdateCommand.Parameters[9].Value = global::System.DBNull.Value; } else { this.Adapter.UpdateCommand.Parameters[9].Value = ((string)(part)); } if ((pdate == null)) { this.Adapter.UpdateCommand.Parameters[10].Value = global::System.DBNull.Value; } else { this.Adapter.UpdateCommand.Parameters[10].Value = ((string)(pdate)); } if ((name == null)) { this.Adapter.UpdateCommand.Parameters[11].Value = global::System.DBNull.Value; } else { this.Adapter.UpdateCommand.Parameters[11].Value = ((string)(name)); } if ((userManager == null)) { this.Adapter.UpdateCommand.Parameters[12].Value = global::System.DBNull.Value; } else { this.Adapter.UpdateCommand.Parameters[12].Value = ((string)(userManager)); } if ((usermain == null)) { this.Adapter.UpdateCommand.Parameters[13].Value = global::System.DBNull.Value; } else { this.Adapter.UpdateCommand.Parameters[13].Value = ((string)(usermain)); } if ((usersub == null)) { this.Adapter.UpdateCommand.Parameters[14].Value = global::System.DBNull.Value; } else { this.Adapter.UpdateCommand.Parameters[14].Value = ((string)(usersub)); } if ((userhw2 == null)) { this.Adapter.UpdateCommand.Parameters[15].Value = global::System.DBNull.Value; } else { this.Adapter.UpdateCommand.Parameters[15].Value = ((string)(userhw2)); } if ((reqstaff == null)) { this.Adapter.UpdateCommand.Parameters[16].Value = global::System.DBNull.Value; } else { this.Adapter.UpdateCommand.Parameters[16].Value = ((string)(reqstaff)); } if ((costo.HasValue == true)) { this.Adapter.UpdateCommand.Parameters[17].Value = ((double)(costo.Value)); } else { this.Adapter.UpdateCommand.Parameters[17].Value = global::System.DBNull.Value; } if ((costn.HasValue == true)) { this.Adapter.UpdateCommand.Parameters[18].Value = ((double)(costn.Value)); } else { this.Adapter.UpdateCommand.Parameters[18].Value = global::System.DBNull.Value; } if ((cnt.HasValue == true)) { this.Adapter.UpdateCommand.Parameters[19].Value = ((int)(cnt.Value)); } else { this.Adapter.UpdateCommand.Parameters[19].Value = global::System.DBNull.Value; } if ((remark_req == null)) { this.Adapter.UpdateCommand.Parameters[20].Value = global::System.DBNull.Value; } else { this.Adapter.UpdateCommand.Parameters[20].Value = ((string)(remark_req)); } if ((remark_ans == null)) { this.Adapter.UpdateCommand.Parameters[21].Value = global::System.DBNull.Value; } else { this.Adapter.UpdateCommand.Parameters[21].Value = ((string)(remark_ans)); } if ((sdate == null)) { this.Adapter.UpdateCommand.Parameters[22].Value = global::System.DBNull.Value; } else { this.Adapter.UpdateCommand.Parameters[22].Value = ((string)(sdate)); } if ((ddate == null)) { this.Adapter.UpdateCommand.Parameters[23].Value = global::System.DBNull.Value; } else { this.Adapter.UpdateCommand.Parameters[23].Value = ((string)(ddate)); } if ((edate == null)) { this.Adapter.UpdateCommand.Parameters[24].Value = global::System.DBNull.Value; } else { this.Adapter.UpdateCommand.Parameters[24].Value = ((string)(edate)); } if ((odate == null)) { this.Adapter.UpdateCommand.Parameters[25].Value = global::System.DBNull.Value; } else { this.Adapter.UpdateCommand.Parameters[25].Value = ((string)(odate)); } if ((bdate == null)) { this.Adapter.UpdateCommand.Parameters[26].Value = global::System.DBNull.Value; } else { this.Adapter.UpdateCommand.Parameters[26].Value = ((string)(bdate)); } if ((qdate == null)) { this.Adapter.UpdateCommand.Parameters[27].Value = global::System.DBNull.Value; } else { this.Adapter.UpdateCommand.Parameters[27].Value = ((string)(qdate)); } if ((cdate == null)) { this.Adapter.UpdateCommand.Parameters[28].Value = global::System.DBNull.Value; } else { this.Adapter.UpdateCommand.Parameters[28].Value = ((string)(cdate)); } if ((progress.HasValue == true)) { this.Adapter.UpdateCommand.Parameters[29].Value = ((int)(progress.Value)); } else { this.Adapter.UpdateCommand.Parameters[29].Value = global::System.DBNull.Value; } if ((memo == null)) { this.Adapter.UpdateCommand.Parameters[30].Value = global::System.DBNull.Value; } else { this.Adapter.UpdateCommand.Parameters[30].Value = ((string)(memo)); } if ((wuid == null)) { throw new global::System.ArgumentNullException("wuid"); } else { this.Adapter.UpdateCommand.Parameters[31].Value = ((string)(wuid)); } this.Adapter.UpdateCommand.Parameters[32].Value = ((System.DateTime)(wdate)); if ((orderno == null)) { this.Adapter.UpdateCommand.Parameters[33].Value = global::System.DBNull.Value; } else { this.Adapter.UpdateCommand.Parameters[33].Value = ((string)(orderno)); } if ((crdue == null)) { this.Adapter.UpdateCommand.Parameters[34].Value = global::System.DBNull.Value; } else { this.Adapter.UpdateCommand.Parameters[34].Value = ((string)(crdue)); } if ((import.HasValue == true)) { this.Adapter.UpdateCommand.Parameters[35].Value = ((bool)(import.Value)); } else { this.Adapter.UpdateCommand.Parameters[35].Value = global::System.DBNull.Value; } if ((path == null)) { this.Adapter.UpdateCommand.Parameters[36].Value = global::System.DBNull.Value; } else { this.Adapter.UpdateCommand.Parameters[36].Value = ((string)(path)); } if ((userprocess == null)) { this.Adapter.UpdateCommand.Parameters[37].Value = global::System.DBNull.Value; } else { this.Adapter.UpdateCommand.Parameters[37].Value = ((string)(userprocess)); } if ((CMP_Background == null)) { this.Adapter.UpdateCommand.Parameters[38].Value = global::System.DBNull.Value; } else { this.Adapter.UpdateCommand.Parameters[38].Value = ((string)(CMP_Background)); } if ((CMP_Description == null)) { this.Adapter.UpdateCommand.Parameters[39].Value = global::System.DBNull.Value; } else { this.Adapter.UpdateCommand.Parameters[39].Value = ((string)(CMP_Description)); } if ((CMP_Before == null)) { this.Adapter.UpdateCommand.Parameters[40].Value = global::System.DBNull.Value; } else { this.Adapter.UpdateCommand.Parameters[40].Value = ((string)(CMP_Before)); } if ((CMP_After == null)) { this.Adapter.UpdateCommand.Parameters[41].Value = global::System.DBNull.Value; } else { this.Adapter.UpdateCommand.Parameters[41].Value = ((string)(CMP_After)); } if ((CMP_After2 == null)) { this.Adapter.UpdateCommand.Parameters[42].Value = global::System.DBNull.Value; } else { this.Adapter.UpdateCommand.Parameters[42].Value = ((string)(CMP_After2)); } if ((bCost.HasValue == true)) { this.Adapter.UpdateCommand.Parameters[43].Value = ((bool)(bCost.Value)); } else { this.Adapter.UpdateCommand.Parameters[43].Value = global::System.DBNull.Value; } if ((bFanOut.HasValue == true)) { this.Adapter.UpdateCommand.Parameters[44].Value = ((bool)(bFanOut.Value)); } else { this.Adapter.UpdateCommand.Parameters[44].Value = global::System.DBNull.Value; } if ((div == null)) { this.Adapter.UpdateCommand.Parameters[45].Value = global::System.DBNull.Value; } else { this.Adapter.UpdateCommand.Parameters[45].Value = ((string)(div)); } if ((model == null)) { this.Adapter.UpdateCommand.Parameters[46].Value = global::System.DBNull.Value; } else { this.Adapter.UpdateCommand.Parameters[46].Value = ((string)(model)); } if ((serial == null)) { this.Adapter.UpdateCommand.Parameters[47].Value = global::System.DBNull.Value; } else { this.Adapter.UpdateCommand.Parameters[47].Value = ((string)(serial)); } if ((EB_Site == null)) { this.Adapter.UpdateCommand.Parameters[48].Value = global::System.DBNull.Value; } else { this.Adapter.UpdateCommand.Parameters[48].Value = ((string)(EB_Site)); } if ((EB_Line == null)) { this.Adapter.UpdateCommand.Parameters[49].Value = global::System.DBNull.Value; } else { this.Adapter.UpdateCommand.Parameters[49].Value = ((string)(EB_Line)); } if ((EB_Team == null)) { this.Adapter.UpdateCommand.Parameters[50].Value = global::System.DBNull.Value; } else { this.Adapter.UpdateCommand.Parameters[50].Value = ((string)(EB_Team)); } if ((EB_Model == null)) { this.Adapter.UpdateCommand.Parameters[51].Value = global::System.DBNull.Value; } else { this.Adapter.UpdateCommand.Parameters[51].Value = ((string)(EB_Model)); } if ((EB_OutSourceName == null)) { this.Adapter.UpdateCommand.Parameters[52].Value = global::System.DBNull.Value; } else { this.Adapter.UpdateCommand.Parameters[52].Value = ((string)(EB_OutSourceName)); } if ((EB_RepairTime.HasValue == true)) { this.Adapter.UpdateCommand.Parameters[53].Value = ((double)(EB_RepairTime.Value)); } else { this.Adapter.UpdateCommand.Parameters[53].Value = global::System.DBNull.Value; } if ((EB_ConstNew.HasValue == true)) { this.Adapter.UpdateCommand.Parameters[54].Value = ((double)(EB_ConstNew.Value)); } else { this.Adapter.UpdateCommand.Parameters[54].Value = global::System.DBNull.Value; } if ((EB_BoardName == null)) { this.Adapter.UpdateCommand.Parameters[55].Value = global::System.DBNull.Value; } else { this.Adapter.UpdateCommand.Parameters[55].Value = ((string)(EB_BoardName)); } if ((bAlert.HasValue == true)) { this.Adapter.UpdateCommand.Parameters[56].Value = ((bool)(bAlert.Value)); } else { this.Adapter.UpdateCommand.Parameters[56].Value = global::System.DBNull.Value; } if ((championid == null)) { this.Adapter.UpdateCommand.Parameters[57].Value = global::System.DBNull.Value; } else { this.Adapter.UpdateCommand.Parameters[57].Value = ((string)(championid)); } if ((designid == null)) { this.Adapter.UpdateCommand.Parameters[58].Value = global::System.DBNull.Value; } else { this.Adapter.UpdateCommand.Parameters[58].Value = ((string)(designid)); } if ((assemblyid == null)) { this.Adapter.UpdateCommand.Parameters[59].Value = global::System.DBNull.Value; } else { this.Adapter.UpdateCommand.Parameters[59].Value = ((string)(assemblyid)); } if ((epanelid == null)) { this.Adapter.UpdateCommand.Parameters[60].Value = global::System.DBNull.Value; } else { this.Adapter.UpdateCommand.Parameters[60].Value = ((string)(epanelid)); } if ((softwareid == null)) { this.Adapter.UpdateCommand.Parameters[61].Value = global::System.DBNull.Value; } else { this.Adapter.UpdateCommand.Parameters[61].Value = ((string)(softwareid)); } if ((userAssembly == null)) { this.Adapter.UpdateCommand.Parameters[62].Value = global::System.DBNull.Value; } else { this.Adapter.UpdateCommand.Parameters[62].Value = ((string)(userAssembly)); } if ((ReqLine == null)) { this.Adapter.UpdateCommand.Parameters[63].Value = global::System.DBNull.Value; } else { this.Adapter.UpdateCommand.Parameters[63].Value = ((string)(ReqLine)); } if ((ReqSite == null)) { this.Adapter.UpdateCommand.Parameters[64].Value = global::System.DBNull.Value; } else { this.Adapter.UpdateCommand.Parameters[64].Value = ((string)(ReqSite)); } if ((ReqPackage == null)) { this.Adapter.UpdateCommand.Parameters[65].Value = global::System.DBNull.Value; } else { this.Adapter.UpdateCommand.Parameters[65].Value = ((string)(ReqPackage)); } if ((ReqPlant == null)) { this.Adapter.UpdateCommand.Parameters[66].Value = global::System.DBNull.Value; } else { this.Adapter.UpdateCommand.Parameters[66].Value = ((string)(ReqPlant)); } if ((pno.HasValue == true)) { this.Adapter.UpdateCommand.Parameters[67].Value = ((int)(pno.Value)); } else { this.Adapter.UpdateCommand.Parameters[67].Value = global::System.DBNull.Value; } if ((kdate == null)) { this.Adapter.UpdateCommand.Parameters[68].Value = global::System.DBNull.Value; } else { this.Adapter.UpdateCommand.Parameters[68].Value = ((string)(kdate)); } if ((jasmin.HasValue == true)) { this.Adapter.UpdateCommand.Parameters[69].Value = ((int)(jasmin.Value)); } else { this.Adapter.UpdateCommand.Parameters[69].Value = global::System.DBNull.Value; } if ((sfi.HasValue == true)) { this.Adapter.UpdateCommand.Parameters[70].Value = ((double)(sfi.Value)); } else { this.Adapter.UpdateCommand.Parameters[70].Value = global::System.DBNull.Value; } if ((sfi_type == null)) { this.Adapter.UpdateCommand.Parameters[71].Value = global::System.DBNull.Value; } else { this.Adapter.UpdateCommand.Parameters[71].Value = ((string)(sfi_type)); } if ((sfi_savetime.HasValue == true)) { this.Adapter.UpdateCommand.Parameters[72].Value = ((double)(sfi_savetime.Value)); } else { this.Adapter.UpdateCommand.Parameters[72].Value = global::System.DBNull.Value; } if ((sfi_savecount.HasValue == true)) { this.Adapter.UpdateCommand.Parameters[73].Value = ((double)(sfi_savecount.Value)); } else { this.Adapter.UpdateCommand.Parameters[73].Value = global::System.DBNull.Value; } if ((sfi_shiftcount.HasValue == true)) { this.Adapter.UpdateCommand.Parameters[74].Value = ((double)(sfi_shiftcount.Value)); } else { this.Adapter.UpdateCommand.Parameters[74].Value = global::System.DBNull.Value; } if ((sfic.HasValue == true)) { this.Adapter.UpdateCommand.Parameters[75].Value = ((double)(sfic.Value)); } else { this.Adapter.UpdateCommand.Parameters[75].Value = global::System.DBNull.Value; } if ((bHighlight.HasValue == true)) { this.Adapter.UpdateCommand.Parameters[76].Value = ((bool)(bHighlight.Value)); } else { this.Adapter.UpdateCommand.Parameters[76].Value = global::System.DBNull.Value; } if ((effect_tangible == null)) { this.Adapter.UpdateCommand.Parameters[77].Value = global::System.DBNull.Value; } else { this.Adapter.UpdateCommand.Parameters[77].Value = ((string)(effect_tangible)); } if ((effect_intangible == null)) { this.Adapter.UpdateCommand.Parameters[78].Value = global::System.DBNull.Value; } else { this.Adapter.UpdateCommand.Parameters[78].Value = ((string)(effect_intangible)); } if ((bmajoritem.HasValue == true)) { this.Adapter.UpdateCommand.Parameters[79].Value = ((bool)(bmajoritem.Value)); } else { this.Adapter.UpdateCommand.Parameters[79].Value = global::System.DBNull.Value; } if ((cramount.HasValue == true)) { this.Adapter.UpdateCommand.Parameters[80].Value = ((decimal)(cramount.Value)); } else { this.Adapter.UpdateCommand.Parameters[80].Value = global::System.DBNull.Value; } this.Adapter.UpdateCommand.Parameters[81].Value = ((int)(Original_idx)); if ((Original_pidx.HasValue == true)) { this.Adapter.UpdateCommand.Parameters[82].Value = ((object)(0)); this.Adapter.UpdateCommand.Parameters[83].Value = ((int)(Original_pidx.Value)); } else { this.Adapter.UpdateCommand.Parameters[82].Value = ((object)(1)); this.Adapter.UpdateCommand.Parameters[83].Value = global::System.DBNull.Value; } if ((Original_gcode == null)) { throw new global::System.ArgumentNullException("Original_gcode"); } else { this.Adapter.UpdateCommand.Parameters[84].Value = ((string)(Original_gcode)); } if ((Original_isdel.HasValue == true)) { this.Adapter.UpdateCommand.Parameters[85].Value = ((object)(0)); this.Adapter.UpdateCommand.Parameters[86].Value = ((bool)(Original_isdel.Value)); } else { this.Adapter.UpdateCommand.Parameters[85].Value = ((object)(1)); this.Adapter.UpdateCommand.Parameters[86].Value = global::System.DBNull.Value; } if ((Original_category == null)) { this.Adapter.UpdateCommand.Parameters[87].Value = ((object)(1)); this.Adapter.UpdateCommand.Parameters[88].Value = global::System.DBNull.Value; } else { this.Adapter.UpdateCommand.Parameters[87].Value = ((object)(0)); this.Adapter.UpdateCommand.Parameters[88].Value = ((string)(Original_category)); } if ((Original_status == null)) { this.Adapter.UpdateCommand.Parameters[89].Value = ((object)(1)); this.Adapter.UpdateCommand.Parameters[90].Value = global::System.DBNull.Value; } else { this.Adapter.UpdateCommand.Parameters[89].Value = ((object)(0)); this.Adapter.UpdateCommand.Parameters[90].Value = ((string)(Original_status)); } if ((Original_asset == null)) { this.Adapter.UpdateCommand.Parameters[91].Value = ((object)(1)); this.Adapter.UpdateCommand.Parameters[92].Value = global::System.DBNull.Value; } else { this.Adapter.UpdateCommand.Parameters[91].Value = ((object)(0)); this.Adapter.UpdateCommand.Parameters[92].Value = ((string)(Original_asset)); } if ((Original_level.HasValue == true)) { this.Adapter.UpdateCommand.Parameters[93].Value = ((object)(0)); this.Adapter.UpdateCommand.Parameters[94].Value = ((int)(Original_level.Value)); } else { this.Adapter.UpdateCommand.Parameters[93].Value = ((object)(1)); this.Adapter.UpdateCommand.Parameters[94].Value = global::System.DBNull.Value; } if ((Original_rev.HasValue == true)) { this.Adapter.UpdateCommand.Parameters[95].Value = ((object)(0)); this.Adapter.UpdateCommand.Parameters[96].Value = ((int)(Original_rev.Value)); } else { this.Adapter.UpdateCommand.Parameters[95].Value = ((object)(1)); this.Adapter.UpdateCommand.Parameters[96].Value = global::System.DBNull.Value; } if ((Original_process == null)) { this.Adapter.UpdateCommand.Parameters[97].Value = ((object)(1)); this.Adapter.UpdateCommand.Parameters[98].Value = global::System.DBNull.Value; } else { this.Adapter.UpdateCommand.Parameters[97].Value = ((object)(0)); this.Adapter.UpdateCommand.Parameters[98].Value = ((string)(Original_process)); } if ((Original_part == null)) { this.Adapter.UpdateCommand.Parameters[99].Value = ((object)(1)); this.Adapter.UpdateCommand.Parameters[100].Value = global::System.DBNull.Value; } else { this.Adapter.UpdateCommand.Parameters[99].Value = ((object)(0)); this.Adapter.UpdateCommand.Parameters[100].Value = ((string)(Original_part)); } if ((Original_pdate == null)) { this.Adapter.UpdateCommand.Parameters[101].Value = ((object)(1)); this.Adapter.UpdateCommand.Parameters[102].Value = global::System.DBNull.Value; } else { this.Adapter.UpdateCommand.Parameters[101].Value = ((object)(0)); this.Adapter.UpdateCommand.Parameters[102].Value = ((string)(Original_pdate)); } if ((Original_name == null)) { this.Adapter.UpdateCommand.Parameters[103].Value = ((object)(1)); this.Adapter.UpdateCommand.Parameters[104].Value = global::System.DBNull.Value; } else { this.Adapter.UpdateCommand.Parameters[103].Value = ((object)(0)); this.Adapter.UpdateCommand.Parameters[104].Value = ((string)(Original_name)); } if ((Original_userManager == null)) { this.Adapter.UpdateCommand.Parameters[105].Value = ((object)(1)); this.Adapter.UpdateCommand.Parameters[106].Value = global::System.DBNull.Value; } else { this.Adapter.UpdateCommand.Parameters[105].Value = ((object)(0)); this.Adapter.UpdateCommand.Parameters[106].Value = ((string)(Original_userManager)); } if ((Original_usermain == null)) { this.Adapter.UpdateCommand.Parameters[107].Value = ((object)(1)); this.Adapter.UpdateCommand.Parameters[108].Value = global::System.DBNull.Value; } else { this.Adapter.UpdateCommand.Parameters[107].Value = ((object)(0)); this.Adapter.UpdateCommand.Parameters[108].Value = ((string)(Original_usermain)); } if ((Original_usersub == null)) { this.Adapter.UpdateCommand.Parameters[109].Value = ((object)(1)); this.Adapter.UpdateCommand.Parameters[110].Value = global::System.DBNull.Value; } else { this.Adapter.UpdateCommand.Parameters[109].Value = ((object)(0)); this.Adapter.UpdateCommand.Parameters[110].Value = ((string)(Original_usersub)); } if ((Original_userhw2 == null)) { this.Adapter.UpdateCommand.Parameters[111].Value = ((object)(1)); this.Adapter.UpdateCommand.Parameters[112].Value = global::System.DBNull.Value; } else { this.Adapter.UpdateCommand.Parameters[111].Value = ((object)(0)); this.Adapter.UpdateCommand.Parameters[112].Value = ((string)(Original_userhw2)); } if ((Original_reqstaff == null)) { this.Adapter.UpdateCommand.Parameters[113].Value = ((object)(1)); this.Adapter.UpdateCommand.Parameters[114].Value = global::System.DBNull.Value; } else { this.Adapter.UpdateCommand.Parameters[113].Value = ((object)(0)); this.Adapter.UpdateCommand.Parameters[114].Value = ((string)(Original_reqstaff)); } if ((Original_costo.HasValue == true)) { this.Adapter.UpdateCommand.Parameters[115].Value = ((object)(0)); this.Adapter.UpdateCommand.Parameters[116].Value = ((double)(Original_costo.Value)); } else { this.Adapter.UpdateCommand.Parameters[115].Value = ((object)(1)); this.Adapter.UpdateCommand.Parameters[116].Value = global::System.DBNull.Value; } if ((Original_costn.HasValue == true)) { this.Adapter.UpdateCommand.Parameters[117].Value = ((object)(0)); this.Adapter.UpdateCommand.Parameters[118].Value = ((double)(Original_costn.Value)); } else { this.Adapter.UpdateCommand.Parameters[117].Value = ((object)(1)); this.Adapter.UpdateCommand.Parameters[118].Value = global::System.DBNull.Value; } if ((Original_cnt.HasValue == true)) { this.Adapter.UpdateCommand.Parameters[119].Value = ((object)(0)); this.Adapter.UpdateCommand.Parameters[120].Value = ((int)(Original_cnt.Value)); } else { this.Adapter.UpdateCommand.Parameters[119].Value = ((object)(1)); this.Adapter.UpdateCommand.Parameters[120].Value = global::System.DBNull.Value; } if ((Original_sdate == null)) { this.Adapter.UpdateCommand.Parameters[121].Value = ((object)(1)); this.Adapter.UpdateCommand.Parameters[122].Value = global::System.DBNull.Value; } else { this.Adapter.UpdateCommand.Parameters[121].Value = ((object)(0)); this.Adapter.UpdateCommand.Parameters[122].Value = ((string)(Original_sdate)); } if ((Original_ddate == null)) { this.Adapter.UpdateCommand.Parameters[123].Value = ((object)(1)); this.Adapter.UpdateCommand.Parameters[124].Value = global::System.DBNull.Value; } else { this.Adapter.UpdateCommand.Parameters[123].Value = ((object)(0)); this.Adapter.UpdateCommand.Parameters[124].Value = ((string)(Original_ddate)); } if ((Original_edate == null)) { this.Adapter.UpdateCommand.Parameters[125].Value = ((object)(1)); this.Adapter.UpdateCommand.Parameters[126].Value = global::System.DBNull.Value; } else { this.Adapter.UpdateCommand.Parameters[125].Value = ((object)(0)); this.Adapter.UpdateCommand.Parameters[126].Value = ((string)(Original_edate)); } if ((Original_odate == null)) { this.Adapter.UpdateCommand.Parameters[127].Value = ((object)(1)); this.Adapter.UpdateCommand.Parameters[128].Value = global::System.DBNull.Value; } else { this.Adapter.UpdateCommand.Parameters[127].Value = ((object)(0)); this.Adapter.UpdateCommand.Parameters[128].Value = ((string)(Original_odate)); } if ((Original_bdate == null)) { this.Adapter.UpdateCommand.Parameters[129].Value = ((object)(1)); this.Adapter.UpdateCommand.Parameters[130].Value = global::System.DBNull.Value; } else { this.Adapter.UpdateCommand.Parameters[129].Value = ((object)(0)); this.Adapter.UpdateCommand.Parameters[130].Value = ((string)(Original_bdate)); } if ((Original_qdate == null)) { this.Adapter.UpdateCommand.Parameters[131].Value = ((object)(1)); this.Adapter.UpdateCommand.Parameters[132].Value = global::System.DBNull.Value; } else { this.Adapter.UpdateCommand.Parameters[131].Value = ((object)(0)); this.Adapter.UpdateCommand.Parameters[132].Value = ((string)(Original_qdate)); } if ((Original_cdate == null)) { this.Adapter.UpdateCommand.Parameters[133].Value = ((object)(1)); this.Adapter.UpdateCommand.Parameters[134].Value = global::System.DBNull.Value; } else { this.Adapter.UpdateCommand.Parameters[133].Value = ((object)(0)); this.Adapter.UpdateCommand.Parameters[134].Value = ((string)(Original_cdate)); } if ((Original_progress.HasValue == true)) { this.Adapter.UpdateCommand.Parameters[135].Value = ((object)(0)); this.Adapter.UpdateCommand.Parameters[136].Value = ((int)(Original_progress.Value)); } else { this.Adapter.UpdateCommand.Parameters[135].Value = ((object)(1)); this.Adapter.UpdateCommand.Parameters[136].Value = global::System.DBNull.Value; } if ((Original_memo == null)) { this.Adapter.UpdateCommand.Parameters[137].Value = ((object)(1)); this.Adapter.UpdateCommand.Parameters[138].Value = global::System.DBNull.Value; } else { this.Adapter.UpdateCommand.Parameters[137].Value = ((object)(0)); this.Adapter.UpdateCommand.Parameters[138].Value = ((string)(Original_memo)); } if ((Original_wuid == null)) { throw new global::System.ArgumentNullException("Original_wuid"); } else { this.Adapter.UpdateCommand.Parameters[139].Value = ((string)(Original_wuid)); } this.Adapter.UpdateCommand.Parameters[140].Value = ((System.DateTime)(Original_wdate)); if ((Original_orderno == null)) { this.Adapter.UpdateCommand.Parameters[141].Value = ((object)(1)); this.Adapter.UpdateCommand.Parameters[142].Value = global::System.DBNull.Value; } else { this.Adapter.UpdateCommand.Parameters[141].Value = ((object)(0)); this.Adapter.UpdateCommand.Parameters[142].Value = ((string)(Original_orderno)); } if ((Original_crdue == null)) { this.Adapter.UpdateCommand.Parameters[143].Value = ((object)(1)); this.Adapter.UpdateCommand.Parameters[144].Value = global::System.DBNull.Value; } else { this.Adapter.UpdateCommand.Parameters[143].Value = ((object)(0)); this.Adapter.UpdateCommand.Parameters[144].Value = ((string)(Original_crdue)); } if ((Original_import.HasValue == true)) { this.Adapter.UpdateCommand.Parameters[145].Value = ((object)(0)); this.Adapter.UpdateCommand.Parameters[146].Value = ((bool)(Original_import.Value)); } else { this.Adapter.UpdateCommand.Parameters[145].Value = ((object)(1)); this.Adapter.UpdateCommand.Parameters[146].Value = global::System.DBNull.Value; } if ((Original_path == null)) { this.Adapter.UpdateCommand.Parameters[147].Value = ((object)(1)); this.Adapter.UpdateCommand.Parameters[148].Value = global::System.DBNull.Value; } else { this.Adapter.UpdateCommand.Parameters[147].Value = ((object)(0)); this.Adapter.UpdateCommand.Parameters[148].Value = ((string)(Original_path)); } if ((Original_userprocess == null)) { this.Adapter.UpdateCommand.Parameters[149].Value = ((object)(1)); this.Adapter.UpdateCommand.Parameters[150].Value = global::System.DBNull.Value; } else { this.Adapter.UpdateCommand.Parameters[149].Value = ((object)(0)); this.Adapter.UpdateCommand.Parameters[150].Value = ((string)(Original_userprocess)); } if ((Original_bCost.HasValue == true)) { this.Adapter.UpdateCommand.Parameters[151].Value = ((object)(0)); this.Adapter.UpdateCommand.Parameters[152].Value = ((bool)(Original_bCost.Value)); } else { this.Adapter.UpdateCommand.Parameters[151].Value = ((object)(1)); this.Adapter.UpdateCommand.Parameters[152].Value = global::System.DBNull.Value; } if ((Original_bFanOut.HasValue == true)) { this.Adapter.UpdateCommand.Parameters[153].Value = ((object)(0)); this.Adapter.UpdateCommand.Parameters[154].Value = ((bool)(Original_bFanOut.Value)); } else { this.Adapter.UpdateCommand.Parameters[153].Value = ((object)(1)); this.Adapter.UpdateCommand.Parameters[154].Value = global::System.DBNull.Value; } if ((Original_div == null)) { this.Adapter.UpdateCommand.Parameters[155].Value = ((object)(1)); this.Adapter.UpdateCommand.Parameters[156].Value = global::System.DBNull.Value; } else { this.Adapter.UpdateCommand.Parameters[155].Value = ((object)(0)); this.Adapter.UpdateCommand.Parameters[156].Value = ((string)(Original_div)); } if ((Original_model == null)) { this.Adapter.UpdateCommand.Parameters[157].Value = ((object)(1)); this.Adapter.UpdateCommand.Parameters[158].Value = global::System.DBNull.Value; } else { this.Adapter.UpdateCommand.Parameters[157].Value = ((object)(0)); this.Adapter.UpdateCommand.Parameters[158].Value = ((string)(Original_model)); } if ((Original_serial == null)) { this.Adapter.UpdateCommand.Parameters[159].Value = ((object)(1)); this.Adapter.UpdateCommand.Parameters[160].Value = global::System.DBNull.Value; } else { this.Adapter.UpdateCommand.Parameters[159].Value = ((object)(0)); this.Adapter.UpdateCommand.Parameters[160].Value = ((string)(Original_serial)); } if ((Original_EB_Site == null)) { this.Adapter.UpdateCommand.Parameters[161].Value = ((object)(1)); this.Adapter.UpdateCommand.Parameters[162].Value = global::System.DBNull.Value; } else { this.Adapter.UpdateCommand.Parameters[161].Value = ((object)(0)); this.Adapter.UpdateCommand.Parameters[162].Value = ((string)(Original_EB_Site)); } if ((Original_EB_Line == null)) { this.Adapter.UpdateCommand.Parameters[163].Value = ((object)(1)); this.Adapter.UpdateCommand.Parameters[164].Value = global::System.DBNull.Value; } else { this.Adapter.UpdateCommand.Parameters[163].Value = ((object)(0)); this.Adapter.UpdateCommand.Parameters[164].Value = ((string)(Original_EB_Line)); } if ((Original_EB_Team == null)) { this.Adapter.UpdateCommand.Parameters[165].Value = ((object)(1)); this.Adapter.UpdateCommand.Parameters[166].Value = global::System.DBNull.Value; } else { this.Adapter.UpdateCommand.Parameters[165].Value = ((object)(0)); this.Adapter.UpdateCommand.Parameters[166].Value = ((string)(Original_EB_Team)); } if ((Original_EB_Model == null)) { this.Adapter.UpdateCommand.Parameters[167].Value = ((object)(1)); this.Adapter.UpdateCommand.Parameters[168].Value = global::System.DBNull.Value; } else { this.Adapter.UpdateCommand.Parameters[167].Value = ((object)(0)); this.Adapter.UpdateCommand.Parameters[168].Value = ((string)(Original_EB_Model)); } if ((Original_EB_OutSourceName == null)) { this.Adapter.UpdateCommand.Parameters[169].Value = ((object)(1)); this.Adapter.UpdateCommand.Parameters[170].Value = global::System.DBNull.Value; } else { this.Adapter.UpdateCommand.Parameters[169].Value = ((object)(0)); this.Adapter.UpdateCommand.Parameters[170].Value = ((string)(Original_EB_OutSourceName)); } if ((Original_EB_RepairTime.HasValue == true)) { this.Adapter.UpdateCommand.Parameters[171].Value = ((object)(0)); this.Adapter.UpdateCommand.Parameters[172].Value = ((double)(Original_EB_RepairTime.Value)); } else { this.Adapter.UpdateCommand.Parameters[171].Value = ((object)(1)); this.Adapter.UpdateCommand.Parameters[172].Value = global::System.DBNull.Value; } if ((Original_EB_ConstNew.HasValue == true)) { this.Adapter.UpdateCommand.Parameters[173].Value = ((object)(0)); this.Adapter.UpdateCommand.Parameters[174].Value = ((double)(Original_EB_ConstNew.Value)); } else { this.Adapter.UpdateCommand.Parameters[173].Value = ((object)(1)); this.Adapter.UpdateCommand.Parameters[174].Value = global::System.DBNull.Value; } if ((Original_EB_BoardName == null)) { this.Adapter.UpdateCommand.Parameters[175].Value = ((object)(1)); this.Adapter.UpdateCommand.Parameters[176].Value = global::System.DBNull.Value; } else { this.Adapter.UpdateCommand.Parameters[175].Value = ((object)(0)); this.Adapter.UpdateCommand.Parameters[176].Value = ((string)(Original_EB_BoardName)); } if ((Original_bAlert.HasValue == true)) { this.Adapter.UpdateCommand.Parameters[177].Value = ((object)(0)); this.Adapter.UpdateCommand.Parameters[178].Value = ((bool)(Original_bAlert.Value)); } else { this.Adapter.UpdateCommand.Parameters[177].Value = ((object)(1)); this.Adapter.UpdateCommand.Parameters[178].Value = global::System.DBNull.Value; } if ((Original_championid == null)) { this.Adapter.UpdateCommand.Parameters[179].Value = ((object)(1)); this.Adapter.UpdateCommand.Parameters[180].Value = global::System.DBNull.Value; } else { this.Adapter.UpdateCommand.Parameters[179].Value = ((object)(0)); this.Adapter.UpdateCommand.Parameters[180].Value = ((string)(Original_championid)); } if ((Original_designid == null)) { this.Adapter.UpdateCommand.Parameters[181].Value = ((object)(1)); this.Adapter.UpdateCommand.Parameters[182].Value = global::System.DBNull.Value; } else { this.Adapter.UpdateCommand.Parameters[181].Value = ((object)(0)); this.Adapter.UpdateCommand.Parameters[182].Value = ((string)(Original_designid)); } if ((Original_assemblyid == null)) { this.Adapter.UpdateCommand.Parameters[183].Value = ((object)(1)); this.Adapter.UpdateCommand.Parameters[184].Value = global::System.DBNull.Value; } else { this.Adapter.UpdateCommand.Parameters[183].Value = ((object)(0)); this.Adapter.UpdateCommand.Parameters[184].Value = ((string)(Original_assemblyid)); } if ((Original_epanelid == null)) { this.Adapter.UpdateCommand.Parameters[185].Value = ((object)(1)); this.Adapter.UpdateCommand.Parameters[186].Value = global::System.DBNull.Value; } else { this.Adapter.UpdateCommand.Parameters[185].Value = ((object)(0)); this.Adapter.UpdateCommand.Parameters[186].Value = ((string)(Original_epanelid)); } if ((Original_softwareid == null)) { this.Adapter.UpdateCommand.Parameters[187].Value = ((object)(1)); this.Adapter.UpdateCommand.Parameters[188].Value = global::System.DBNull.Value; } else { this.Adapter.UpdateCommand.Parameters[187].Value = ((object)(0)); this.Adapter.UpdateCommand.Parameters[188].Value = ((string)(Original_softwareid)); } if ((Original_userAssembly == null)) { this.Adapter.UpdateCommand.Parameters[189].Value = ((object)(1)); this.Adapter.UpdateCommand.Parameters[190].Value = global::System.DBNull.Value; } else { this.Adapter.UpdateCommand.Parameters[189].Value = ((object)(0)); this.Adapter.UpdateCommand.Parameters[190].Value = ((string)(Original_userAssembly)); } if ((Original_ReqLine == null)) { this.Adapter.UpdateCommand.Parameters[191].Value = ((object)(1)); this.Adapter.UpdateCommand.Parameters[192].Value = global::System.DBNull.Value; } else { this.Adapter.UpdateCommand.Parameters[191].Value = ((object)(0)); this.Adapter.UpdateCommand.Parameters[192].Value = ((string)(Original_ReqLine)); } if ((Original_ReqSite == null)) { this.Adapter.UpdateCommand.Parameters[193].Value = ((object)(1)); this.Adapter.UpdateCommand.Parameters[194].Value = global::System.DBNull.Value; } else { this.Adapter.UpdateCommand.Parameters[193].Value = ((object)(0)); this.Adapter.UpdateCommand.Parameters[194].Value = ((string)(Original_ReqSite)); } if ((Original_ReqPackage == null)) { this.Adapter.UpdateCommand.Parameters[195].Value = ((object)(1)); this.Adapter.UpdateCommand.Parameters[196].Value = global::System.DBNull.Value; } else { this.Adapter.UpdateCommand.Parameters[195].Value = ((object)(0)); this.Adapter.UpdateCommand.Parameters[196].Value = ((string)(Original_ReqPackage)); } if ((Original_ReqPlant == null)) { this.Adapter.UpdateCommand.Parameters[197].Value = ((object)(1)); this.Adapter.UpdateCommand.Parameters[198].Value = global::System.DBNull.Value; } else { this.Adapter.UpdateCommand.Parameters[197].Value = ((object)(0)); this.Adapter.UpdateCommand.Parameters[198].Value = ((string)(Original_ReqPlant)); } if ((Original_pno.HasValue == true)) { this.Adapter.UpdateCommand.Parameters[199].Value = ((object)(0)); this.Adapter.UpdateCommand.Parameters[200].Value = ((int)(Original_pno.Value)); } else { this.Adapter.UpdateCommand.Parameters[199].Value = ((object)(1)); this.Adapter.UpdateCommand.Parameters[200].Value = global::System.DBNull.Value; } if ((Original_kdate == null)) { this.Adapter.UpdateCommand.Parameters[201].Value = ((object)(1)); this.Adapter.UpdateCommand.Parameters[202].Value = global::System.DBNull.Value; } else { this.Adapter.UpdateCommand.Parameters[201].Value = ((object)(0)); this.Adapter.UpdateCommand.Parameters[202].Value = ((string)(Original_kdate)); } if ((Original_jasmin.HasValue == true)) { this.Adapter.UpdateCommand.Parameters[203].Value = ((object)(0)); this.Adapter.UpdateCommand.Parameters[204].Value = ((int)(Original_jasmin.Value)); } else { this.Adapter.UpdateCommand.Parameters[203].Value = ((object)(1)); this.Adapter.UpdateCommand.Parameters[204].Value = global::System.DBNull.Value; } if ((Original_sfi.HasValue == true)) { this.Adapter.UpdateCommand.Parameters[205].Value = ((object)(0)); this.Adapter.UpdateCommand.Parameters[206].Value = ((double)(Original_sfi.Value)); } else { this.Adapter.UpdateCommand.Parameters[205].Value = ((object)(1)); this.Adapter.UpdateCommand.Parameters[206].Value = global::System.DBNull.Value; } if ((Original_sfi_type == null)) { this.Adapter.UpdateCommand.Parameters[207].Value = ((object)(1)); this.Adapter.UpdateCommand.Parameters[208].Value = global::System.DBNull.Value; } else { this.Adapter.UpdateCommand.Parameters[207].Value = ((object)(0)); this.Adapter.UpdateCommand.Parameters[208].Value = ((string)(Original_sfi_type)); } if ((Original_sfi_savetime.HasValue == true)) { this.Adapter.UpdateCommand.Parameters[209].Value = ((object)(0)); this.Adapter.UpdateCommand.Parameters[210].Value = ((double)(Original_sfi_savetime.Value)); } else { this.Adapter.UpdateCommand.Parameters[209].Value = ((object)(1)); this.Adapter.UpdateCommand.Parameters[210].Value = global::System.DBNull.Value; } if ((Original_sfi_savecount.HasValue == true)) { this.Adapter.UpdateCommand.Parameters[211].Value = ((object)(0)); this.Adapter.UpdateCommand.Parameters[212].Value = ((double)(Original_sfi_savecount.Value)); } else { this.Adapter.UpdateCommand.Parameters[211].Value = ((object)(1)); this.Adapter.UpdateCommand.Parameters[212].Value = global::System.DBNull.Value; } if ((Original_sfi_shiftcount.HasValue == true)) { this.Adapter.UpdateCommand.Parameters[213].Value = ((object)(0)); this.Adapter.UpdateCommand.Parameters[214].Value = ((double)(Original_sfi_shiftcount.Value)); } else { this.Adapter.UpdateCommand.Parameters[213].Value = ((object)(1)); this.Adapter.UpdateCommand.Parameters[214].Value = global::System.DBNull.Value; } if ((Original_sfic.HasValue == true)) { this.Adapter.UpdateCommand.Parameters[215].Value = ((object)(0)); this.Adapter.UpdateCommand.Parameters[216].Value = ((double)(Original_sfic.Value)); } else { this.Adapter.UpdateCommand.Parameters[215].Value = ((object)(1)); this.Adapter.UpdateCommand.Parameters[216].Value = global::System.DBNull.Value; } if ((Original_bHighlight.HasValue == true)) { this.Adapter.UpdateCommand.Parameters[217].Value = ((object)(0)); this.Adapter.UpdateCommand.Parameters[218].Value = ((bool)(Original_bHighlight.Value)); } else { this.Adapter.UpdateCommand.Parameters[217].Value = ((object)(1)); this.Adapter.UpdateCommand.Parameters[218].Value = global::System.DBNull.Value; } if ((Original_effect_tangible == null)) { this.Adapter.UpdateCommand.Parameters[219].Value = ((object)(1)); this.Adapter.UpdateCommand.Parameters[220].Value = global::System.DBNull.Value; } else { this.Adapter.UpdateCommand.Parameters[219].Value = ((object)(0)); this.Adapter.UpdateCommand.Parameters[220].Value = ((string)(Original_effect_tangible)); } if ((Original_effect_intangible == null)) { this.Adapter.UpdateCommand.Parameters[221].Value = ((object)(1)); this.Adapter.UpdateCommand.Parameters[222].Value = global::System.DBNull.Value; } else { this.Adapter.UpdateCommand.Parameters[221].Value = ((object)(0)); this.Adapter.UpdateCommand.Parameters[222].Value = ((string)(Original_effect_intangible)); } if ((Original_bmajoritem.HasValue == true)) { this.Adapter.UpdateCommand.Parameters[223].Value = ((object)(0)); this.Adapter.UpdateCommand.Parameters[224].Value = ((bool)(Original_bmajoritem.Value)); } else { this.Adapter.UpdateCommand.Parameters[223].Value = ((object)(1)); this.Adapter.UpdateCommand.Parameters[224].Value = global::System.DBNull.Value; } if ((Original_cramount.HasValue == true)) { this.Adapter.UpdateCommand.Parameters[225].Value = ((object)(0)); this.Adapter.UpdateCommand.Parameters[226].Value = ((decimal)(Original_cramount.Value)); } else { this.Adapter.UpdateCommand.Parameters[225].Value = ((object)(1)); this.Adapter.UpdateCommand.Parameters[226].Value = global::System.DBNull.Value; } this.Adapter.UpdateCommand.Parameters[227].Value = ((int)(idx)); global::System.Data.ConnectionState previousConnectionState = this.Adapter.UpdateCommand.Connection.State; if (((this.Adapter.UpdateCommand.Connection.State & global::System.Data.ConnectionState.Open) != global::System.Data.ConnectionState.Open)) { this.Adapter.UpdateCommand.Connection.Open(); } try { int returnValue = this.Adapter.UpdateCommand.ExecuteNonQuery(); return returnValue; } finally { if ((previousConnectionState == global::System.Data.ConnectionState.Closed)) { this.Adapter.UpdateCommand.Connection.Close(); } } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")] [global::System.ComponentModel.DataObjectMethodAttribute(global::System.ComponentModel.DataObjectMethodType.Update, true)] public virtual int Update( global::System.Nullable pidx, string gcode, global::System.Nullable isdel, string category, string status, string asset, global::System.Nullable level, global::System.Nullable rev, string process, string part, string pdate, string name, string userManager, string usermain, string usersub, string userhw2, string reqstaff, global::System.Nullable costo, global::System.Nullable costn, global::System.Nullable cnt, string remark_req, string remark_ans, string sdate, string ddate, string edate, string odate, string bdate, string qdate, string cdate, global::System.Nullable progress, string memo, string wuid, System.DateTime wdate, string orderno, string crdue, global::System.Nullable import, string path, string userprocess, string CMP_Background, string CMP_Description, string CMP_Before, string CMP_After, string CMP_After2, global::System.Nullable bCost, global::System.Nullable bFanOut, string div, string model, string serial, string EB_Site, string EB_Line, string EB_Team, string EB_Model, string EB_OutSourceName, global::System.Nullable EB_RepairTime, global::System.Nullable EB_ConstNew, string EB_BoardName, global::System.Nullable bAlert, string championid, string designid, string assemblyid, string epanelid, string softwareid, string userAssembly, string ReqLine, string ReqSite, string ReqPackage, string ReqPlant, global::System.Nullable pno, string kdate, global::System.Nullable jasmin, global::System.Nullable sfi, string sfi_type, global::System.Nullable sfi_savetime, global::System.Nullable sfi_savecount, global::System.Nullable sfi_shiftcount, global::System.Nullable sfic, global::System.Nullable bHighlight, string effect_tangible, string effect_intangible, global::System.Nullable bmajoritem, global::System.Nullable cramount, int Original_idx, global::System.Nullable Original_pidx, string Original_gcode, global::System.Nullable Original_isdel, string Original_category, string Original_status, string Original_asset, global::System.Nullable Original_level, global::System.Nullable Original_rev, string Original_process, string Original_part, string Original_pdate, string Original_name, string Original_userManager, string Original_usermain, string Original_usersub, string Original_userhw2, string Original_reqstaff, global::System.Nullable Original_costo, global::System.Nullable Original_costn, global::System.Nullable Original_cnt, string Original_sdate, string Original_ddate, string Original_edate, string Original_odate, string Original_bdate, string Original_qdate, string Original_cdate, global::System.Nullable Original_progress, string Original_memo, string Original_wuid, System.DateTime Original_wdate, string Original_orderno, string Original_crdue, global::System.Nullable Original_import, string Original_path, string Original_userprocess, global::System.Nullable Original_bCost, global::System.Nullable Original_bFanOut, string Original_div, string Original_model, string Original_serial, string Original_EB_Site, string Original_EB_Line, string Original_EB_Team, string Original_EB_Model, string Original_EB_OutSourceName, global::System.Nullable Original_EB_RepairTime, global::System.Nullable Original_EB_ConstNew, string Original_EB_BoardName, global::System.Nullable Original_bAlert, string Original_championid, string Original_designid, string Original_assemblyid, string Original_epanelid, string Original_softwareid, string Original_userAssembly, string Original_ReqLine, string Original_ReqSite, string Original_ReqPackage, string Original_ReqPlant, global::System.Nullable Original_pno, string Original_kdate, global::System.Nullable Original_jasmin, global::System.Nullable Original_sfi, string Original_sfi_type, global::System.Nullable Original_sfi_savetime, global::System.Nullable Original_sfi_savecount, global::System.Nullable Original_sfi_shiftcount, global::System.Nullable Original_sfic, global::System.Nullable Original_bHighlight, string Original_effect_tangible, string Original_effect_intangible, global::System.Nullable Original_bmajoritem, global::System.Nullable Original_cramount) { return this.Update(pidx, gcode, isdel, category, status, asset, level, rev, process, part, pdate, name, userManager, usermain, usersub, userhw2, reqstaff, costo, costn, cnt, remark_req, remark_ans, sdate, ddate, edate, odate, bdate, qdate, cdate, progress, memo, wuid, wdate, orderno, crdue, import, path, userprocess, CMP_Background, CMP_Description, CMP_Before, CMP_After, CMP_After2, bCost, bFanOut, div, model, serial, EB_Site, EB_Line, EB_Team, EB_Model, EB_OutSourceName, EB_RepairTime, EB_ConstNew, EB_BoardName, bAlert, championid, designid, assemblyid, epanelid, softwareid, userAssembly, ReqLine, ReqSite, ReqPackage, ReqPlant, pno, kdate, jasmin, sfi, sfi_type, sfi_savetime, sfi_savecount, sfi_shiftcount, sfic, bHighlight, effect_tangible, effect_intangible, bmajoritem, cramount, Original_idx, Original_pidx, Original_gcode, Original_isdel, Original_category, Original_status, Original_asset, Original_level, Original_rev, Original_process, Original_part, Original_pdate, Original_name, Original_userManager, Original_usermain, Original_usersub, Original_userhw2, Original_reqstaff, Original_costo, Original_costn, Original_cnt, Original_sdate, Original_ddate, Original_edate, Original_odate, Original_bdate, Original_qdate, Original_cdate, Original_progress, Original_memo, Original_wuid, Original_wdate, Original_orderno, Original_crdue, Original_import, Original_path, Original_userprocess, Original_bCost, Original_bFanOut, Original_div, Original_model, Original_serial, Original_EB_Site, Original_EB_Line, Original_EB_Team, Original_EB_Model, Original_EB_OutSourceName, Original_EB_RepairTime, Original_EB_ConstNew, Original_EB_BoardName, Original_bAlert, Original_championid, Original_designid, Original_assemblyid, Original_epanelid, Original_softwareid, Original_userAssembly, Original_ReqLine, Original_ReqSite, Original_ReqPackage, Original_ReqPlant, Original_pno, Original_kdate, Original_jasmin, Original_sfi, Original_sfi_type, Original_sfi_savetime, Original_sfi_savecount, Original_sfi_shiftcount, Original_sfic, Original_bHighlight, Original_effect_tangible, Original_effect_intangible, Original_bmajoritem, Original_cramount, Original_idx); } } /// ///Represents the connection and commands used to retrieve and save data. /// [global::System.ComponentModel.DesignerCategoryAttribute("code")] [global::System.ComponentModel.ToolboxItem(true)] [global::System.ComponentModel.DataObjectAttribute(true)] [global::System.ComponentModel.DesignerAttribute("Microsoft.VSDesigner.DataSource.Design.TableAdapterDesigner, Microsoft.VSDesigner" + ", Version=10.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a")] [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")] public partial class EETGW_ProjectsScheduleTableAdapter : global::System.ComponentModel.Component { private global::System.Data.SqlClient.SqlDataAdapter _adapter; private global::System.Data.SqlClient.SqlConnection _connection; private global::System.Data.SqlClient.SqlTransaction _transaction; private global::System.Data.SqlClient.SqlCommand[] _commandCollection; private bool _clearBeforeFill; [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public EETGW_ProjectsScheduleTableAdapter() { this.ClearBeforeFill = true; } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] protected internal global::System.Data.SqlClient.SqlDataAdapter Adapter { get { if ((this._adapter == null)) { this.InitAdapter(); } return this._adapter; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] internal global::System.Data.SqlClient.SqlConnection Connection { get { if ((this._connection == null)) { this.InitConnection(); } return this._connection; } set { this._connection = value; if ((this.Adapter.InsertCommand != null)) { this.Adapter.InsertCommand.Connection = value; } if ((this.Adapter.DeleteCommand != null)) { this.Adapter.DeleteCommand.Connection = value; } if ((this.Adapter.UpdateCommand != null)) { this.Adapter.UpdateCommand.Connection = value; } for (int i = 0; (i < this.CommandCollection.Length); i = (i + 1)) { if ((this.CommandCollection[i] != null)) { ((global::System.Data.SqlClient.SqlCommand)(this.CommandCollection[i])).Connection = value; } } } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] internal global::System.Data.SqlClient.SqlTransaction Transaction { get { return this._transaction; } set { this._transaction = value; for (int i = 0; (i < this.CommandCollection.Length); i = (i + 1)) { this.CommandCollection[i].Transaction = this._transaction; } if (((this.Adapter != null) && (this.Adapter.DeleteCommand != null))) { this.Adapter.DeleteCommand.Transaction = this._transaction; } if (((this.Adapter != null) && (this.Adapter.InsertCommand != null))) { this.Adapter.InsertCommand.Transaction = this._transaction; } if (((this.Adapter != null) && (this.Adapter.UpdateCommand != null))) { this.Adapter.UpdateCommand.Transaction = this._transaction; } } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] protected global::System.Data.SqlClient.SqlCommand[] CommandCollection { get { if ((this._commandCollection == null)) { this.InitCommandCollection(); } return this._commandCollection; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public bool ClearBeforeFill { get { return this._clearBeforeFill; } set { this._clearBeforeFill = value; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] private void InitAdapter() { this._adapter = new global::System.Data.SqlClient.SqlDataAdapter(); global::System.Data.Common.DataTableMapping tableMapping = new global::System.Data.Common.DataTableMapping(); tableMapping.SourceTable = "Table"; tableMapping.DataSetTable = "EETGW_ProjectsSchedule"; tableMapping.ColumnMappings.Add("idx", "idx"); tableMapping.ColumnMappings.Add("gcode", "gcode"); tableMapping.ColumnMappings.Add("project", "project"); tableMapping.ColumnMappings.Add("no", "no"); tableMapping.ColumnMappings.Add("seq", "seq"); tableMapping.ColumnMappings.Add("title", "title"); tableMapping.ColumnMappings.Add("cate", "cate"); tableMapping.ColumnMappings.Add("sw", "sw"); tableMapping.ColumnMappings.Add("ew", "ew"); tableMapping.ColumnMappings.Add("swa", "swa"); tableMapping.ColumnMappings.Add("ewa", "ewa"); tableMapping.ColumnMappings.Add("uid", "uid"); tableMapping.ColumnMappings.Add("memo", "memo"); tableMapping.ColumnMappings.Add("appoval", "appoval"); tableMapping.ColumnMappings.Add("progress", "progress"); tableMapping.ColumnMappings.Add("wuid", "wuid"); tableMapping.ColumnMappings.Add("wdate", "wdate"); tableMapping.ColumnMappings.Add("complete", "complete"); tableMapping.ColumnMappings.Add("uidname", "uidname"); this._adapter.TableMappings.Add(tableMapping); this._adapter.DeleteCommand = new global::System.Data.SqlClient.SqlCommand(); this._adapter.DeleteCommand.Connection = this.Connection; this._adapter.DeleteCommand.CommandText = @"DELETE FROM [EETGW_ProjectsSchedule] WHERE (([idx] = @Original_idx) AND ((@IsNull_gcode = 1 AND [gcode] IS NULL) OR ([gcode] = @Original_gcode)) AND ((@IsNull_project = 1 AND [project] IS NULL) OR ([project] = @Original_project)) AND ((@IsNull_no = 1 AND [no] IS NULL) OR ([no] = @Original_no)) AND ((@IsNull_seq = 1 AND [seq] IS NULL) OR ([seq] = @Original_seq)) AND ((@IsNull_title = 1 AND [title] IS NULL) OR ([title] = @Original_title)) AND ((@IsNull_cate = 1 AND [cate] IS NULL) OR ([cate] = @Original_cate)) AND ((@IsNull_sw = 1 AND [sw] IS NULL) OR ([sw] = @Original_sw)) AND ((@IsNull_ew = 1 AND [ew] IS NULL) OR ([ew] = @Original_ew)) AND ((@IsNull_swa = 1 AND [swa] IS NULL) OR ([swa] = @Original_swa)) AND ((@IsNull_ewa = 1 AND [ewa] IS NULL) OR ([ewa] = @Original_ewa)) AND ((@IsNull_uid = 1 AND [uid] IS NULL) OR ([uid] = @Original_uid)) AND ((@IsNull_appoval = 1 AND [appoval] IS NULL) OR ([appoval] = @Original_appoval)) AND ((@IsNull_progress = 1 AND [progress] IS NULL) OR ([progress] = @Original_progress)) AND ([wuid] = @Original_wuid) AND ([wdate] = @Original_wdate) AND ((@IsNull_complete = 1 AND [complete] IS NULL) OR ([complete] = @Original_complete)) AND ((@IsNull_uidname = 1 AND [uidname] IS NULL) OR ([uidname] = @Original_uidname)))"; this._adapter.DeleteCommand.CommandType = global::System.Data.CommandType.Text; this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_idx", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "idx", global::System.Data.DataRowVersion.Original, false, null, "", "", "")); this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@IsNull_gcode", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "gcode", global::System.Data.DataRowVersion.Original, true, null, "", "", "")); this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_gcode", global::System.Data.SqlDbType.VarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "gcode", global::System.Data.DataRowVersion.Original, false, null, "", "", "")); this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@IsNull_project", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "project", global::System.Data.DataRowVersion.Original, true, null, "", "", "")); this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_project", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "project", global::System.Data.DataRowVersion.Original, false, null, "", "", "")); this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@IsNull_no", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "no", global::System.Data.DataRowVersion.Original, true, null, "", "", "")); this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_no", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "no", global::System.Data.DataRowVersion.Original, false, null, "", "", "")); this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@IsNull_seq", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "seq", global::System.Data.DataRowVersion.Original, true, null, "", "", "")); this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_seq", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "seq", global::System.Data.DataRowVersion.Original, false, null, "", "", "")); this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@IsNull_title", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "title", global::System.Data.DataRowVersion.Original, true, null, "", "", "")); this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_title", global::System.Data.SqlDbType.VarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "title", global::System.Data.DataRowVersion.Original, false, null, "", "", "")); this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@IsNull_cate", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "cate", global::System.Data.DataRowVersion.Original, true, null, "", "", "")); this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_cate", global::System.Data.SqlDbType.VarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "cate", global::System.Data.DataRowVersion.Original, false, null, "", "", "")); this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@IsNull_sw", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "sw", global::System.Data.DataRowVersion.Original, true, null, "", "", "")); this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_sw", global::System.Data.SqlDbType.VarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "sw", global::System.Data.DataRowVersion.Original, false, null, "", "", "")); this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@IsNull_ew", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "ew", global::System.Data.DataRowVersion.Original, true, null, "", "", "")); this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_ew", global::System.Data.SqlDbType.VarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "ew", global::System.Data.DataRowVersion.Original, false, null, "", "", "")); this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@IsNull_swa", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "swa", global::System.Data.DataRowVersion.Original, true, null, "", "", "")); this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_swa", global::System.Data.SqlDbType.VarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "swa", global::System.Data.DataRowVersion.Original, false, null, "", "", "")); this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@IsNull_ewa", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "ewa", global::System.Data.DataRowVersion.Original, true, null, "", "", "")); this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_ewa", global::System.Data.SqlDbType.VarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "ewa", global::System.Data.DataRowVersion.Original, false, null, "", "", "")); this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@IsNull_uid", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "uid", global::System.Data.DataRowVersion.Original, true, null, "", "", "")); this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_uid", global::System.Data.SqlDbType.VarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "uid", global::System.Data.DataRowVersion.Original, false, null, "", "", "")); this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@IsNull_appoval", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "appoval", global::System.Data.DataRowVersion.Original, true, null, "", "", "")); this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_appoval", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "appoval", global::System.Data.DataRowVersion.Original, false, null, "", "", "")); this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@IsNull_progress", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "progress", global::System.Data.DataRowVersion.Original, true, null, "", "", "")); this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_progress", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "progress", global::System.Data.DataRowVersion.Original, false, null, "", "", "")); this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_wuid", global::System.Data.SqlDbType.VarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "wuid", global::System.Data.DataRowVersion.Original, false, null, "", "", "")); this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_wdate", global::System.Data.SqlDbType.SmallDateTime, 0, global::System.Data.ParameterDirection.Input, 0, 0, "wdate", global::System.Data.DataRowVersion.Original, false, null, "", "", "")); this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@IsNull_complete", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "complete", global::System.Data.DataRowVersion.Original, true, null, "", "", "")); this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_complete", global::System.Data.SqlDbType.Bit, 0, global::System.Data.ParameterDirection.Input, 0, 0, "complete", global::System.Data.DataRowVersion.Original, false, null, "", "", "")); this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@IsNull_uidname", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "uidname", global::System.Data.DataRowVersion.Original, true, null, "", "", "")); this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_uidname", global::System.Data.SqlDbType.VarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "uidname", global::System.Data.DataRowVersion.Original, false, null, "", "", "")); this._adapter.InsertCommand = new global::System.Data.SqlClient.SqlCommand(); this._adapter.InsertCommand.Connection = this.Connection; this._adapter.InsertCommand.CommandText = @"INSERT INTO [EETGW_ProjectsSchedule] ([gcode], [project], [no], [seq], [title], [cate], [sw], [ew], [swa], [ewa], [uid], [memo], [appoval], [progress], [wuid], [wdate], [complete], [uidname]) VALUES (@gcode, @project, @no, @seq, @title, @cate, @sw, @ew, @swa, @ewa, @uid, @memo, @appoval, @progress, @wuid, @wdate, @complete, @uidname); SELECT idx, gcode, project, no, seq, title, cate, sw, ew, swa, ewa, uid, memo, appoval, progress, wuid, wdate, complete, uidname FROM EETGW_ProjectsSchedule WHERE (idx = SCOPE_IDENTITY()) ORDER BY no DESC, seq"; this._adapter.InsertCommand.CommandType = global::System.Data.CommandType.Text; this._adapter.InsertCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@gcode", global::System.Data.SqlDbType.VarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "gcode", global::System.Data.DataRowVersion.Current, false, null, "", "", "")); this._adapter.InsertCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@project", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "project", global::System.Data.DataRowVersion.Current, false, null, "", "", "")); this._adapter.InsertCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@no", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "no", global::System.Data.DataRowVersion.Current, false, null, "", "", "")); this._adapter.InsertCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@seq", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "seq", global::System.Data.DataRowVersion.Current, false, null, "", "", "")); this._adapter.InsertCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@title", global::System.Data.SqlDbType.VarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "title", global::System.Data.DataRowVersion.Current, false, null, "", "", "")); this._adapter.InsertCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@cate", global::System.Data.SqlDbType.VarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "cate", global::System.Data.DataRowVersion.Current, false, null, "", "", "")); this._adapter.InsertCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@sw", global::System.Data.SqlDbType.VarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "sw", global::System.Data.DataRowVersion.Current, false, null, "", "", "")); this._adapter.InsertCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@ew", global::System.Data.SqlDbType.VarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "ew", global::System.Data.DataRowVersion.Current, false, null, "", "", "")); this._adapter.InsertCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@swa", global::System.Data.SqlDbType.VarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "swa", global::System.Data.DataRowVersion.Current, false, null, "", "", "")); this._adapter.InsertCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@ewa", global::System.Data.SqlDbType.VarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "ewa", global::System.Data.DataRowVersion.Current, false, null, "", "", "")); this._adapter.InsertCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@uid", global::System.Data.SqlDbType.VarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "uid", global::System.Data.DataRowVersion.Current, false, null, "", "", "")); this._adapter.InsertCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@memo", global::System.Data.SqlDbType.VarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "memo", global::System.Data.DataRowVersion.Current, false, null, "", "", "")); this._adapter.InsertCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@appoval", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "appoval", global::System.Data.DataRowVersion.Current, false, null, "", "", "")); this._adapter.InsertCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@progress", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "progress", global::System.Data.DataRowVersion.Current, false, null, "", "", "")); this._adapter.InsertCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@wuid", global::System.Data.SqlDbType.VarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "wuid", global::System.Data.DataRowVersion.Current, false, null, "", "", "")); this._adapter.InsertCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@wdate", global::System.Data.SqlDbType.SmallDateTime, 0, global::System.Data.ParameterDirection.Input, 0, 0, "wdate", global::System.Data.DataRowVersion.Current, false, null, "", "", "")); this._adapter.InsertCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@complete", global::System.Data.SqlDbType.Bit, 0, global::System.Data.ParameterDirection.Input, 0, 0, "complete", global::System.Data.DataRowVersion.Current, false, null, "", "", "")); this._adapter.InsertCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@uidname", global::System.Data.SqlDbType.VarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "uidname", global::System.Data.DataRowVersion.Current, false, null, "", "", "")); this._adapter.UpdateCommand = new global::System.Data.SqlClient.SqlCommand(); this._adapter.UpdateCommand.Connection = this.Connection; this._adapter.UpdateCommand.CommandText = "UPDATE [EETGW_ProjectsSchedule] SET [gcode] = @gcode, [project] = @project, [no] " + "= @no, [seq] = @seq, [title] = @title, [cate] = @cate, [sw] = @sw, [ew] = @ew, [" + "swa] = @swa, [ewa] = @ewa, [uid] = @uid, [memo] = @memo, [appoval] = @appoval, [" + "progress] = @progress, [wuid] = @wuid, [wdate] = @wdate, [complete] = @complete," + " [uidname] = @uidname WHERE (([idx] = @Original_idx) AND ((@IsNull_gcode = 1 AND" + " [gcode] IS NULL) OR ([gcode] = @Original_gcode)) AND ((@IsNull_project = 1 AND " + "[project] IS NULL) OR ([project] = @Original_project)) AND ((@IsNull_no = 1 AND " + "[no] IS NULL) OR ([no] = @Original_no)) AND ((@IsNull_seq = 1 AND [seq] IS NULL)" + " OR ([seq] = @Original_seq)) AND ((@IsNull_title = 1 AND [title] IS NULL) OR ([t" + "itle] = @Original_title)) AND ((@IsNull_cate = 1 AND [cate] IS NULL) OR ([cate] " + "= @Original_cate)) AND ((@IsNull_sw = 1 AND [sw] IS NULL) OR ([sw] = @Original_s" + "w)) AND ((@IsNull_ew = 1 AND [ew] IS NULL) OR ([ew] = @Original_ew)) AND ((@IsNu" + "ll_swa = 1 AND [swa] IS NULL) OR ([swa] = @Original_swa)) AND ((@IsNull_ewa = 1 " + "AND [ewa] IS NULL) OR ([ewa] = @Original_ewa)) AND ((@IsNull_uid = 1 AND [uid] I" + "S NULL) OR ([uid] = @Original_uid)) AND ((@IsNull_appoval = 1 AND [appoval] IS N" + "ULL) OR ([appoval] = @Original_appoval)) AND ((@IsNull_progress = 1 AND [progres" + "s] IS NULL) OR ([progress] = @Original_progress)) AND ([wuid] = @Original_wuid) " + "AND ([wdate] = @Original_wdate) AND ((@IsNull_complete = 1 AND [complete] IS NUL" + "L) OR ([complete] = @Original_complete)) AND ((@IsNull_uidname = 1 AND [uidname]" + " IS NULL) OR ([uidname] = @Original_uidname)));\r\nSELECT idx, gcode, project, no," + " seq, title, cate, sw, ew, swa, ewa, uid, memo, appoval, progress, wuid, wdate, " + "complete, uidname FROM EETGW_ProjectsSchedule WHERE (idx = @idx) ORDER BY no DES" + "C, seq"; this._adapter.UpdateCommand.CommandType = global::System.Data.CommandType.Text; this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@gcode", global::System.Data.SqlDbType.VarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "gcode", global::System.Data.DataRowVersion.Current, false, null, "", "", "")); this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@project", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "project", global::System.Data.DataRowVersion.Current, false, null, "", "", "")); this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@no", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "no", global::System.Data.DataRowVersion.Current, false, null, "", "", "")); this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@seq", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "seq", global::System.Data.DataRowVersion.Current, false, null, "", "", "")); this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@title", global::System.Data.SqlDbType.VarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "title", global::System.Data.DataRowVersion.Current, false, null, "", "", "")); this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@cate", global::System.Data.SqlDbType.VarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "cate", global::System.Data.DataRowVersion.Current, false, null, "", "", "")); this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@sw", global::System.Data.SqlDbType.VarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "sw", global::System.Data.DataRowVersion.Current, false, null, "", "", "")); this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@ew", global::System.Data.SqlDbType.VarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "ew", global::System.Data.DataRowVersion.Current, false, null, "", "", "")); this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@swa", global::System.Data.SqlDbType.VarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "swa", global::System.Data.DataRowVersion.Current, false, null, "", "", "")); this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@ewa", global::System.Data.SqlDbType.VarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "ewa", global::System.Data.DataRowVersion.Current, false, null, "", "", "")); this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@uid", global::System.Data.SqlDbType.VarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "uid", global::System.Data.DataRowVersion.Current, false, null, "", "", "")); this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@memo", global::System.Data.SqlDbType.VarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "memo", global::System.Data.DataRowVersion.Current, false, null, "", "", "")); this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@appoval", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "appoval", global::System.Data.DataRowVersion.Current, false, null, "", "", "")); this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@progress", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "progress", global::System.Data.DataRowVersion.Current, false, null, "", "", "")); this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@wuid", global::System.Data.SqlDbType.VarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "wuid", global::System.Data.DataRowVersion.Current, false, null, "", "", "")); this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@wdate", global::System.Data.SqlDbType.SmallDateTime, 0, global::System.Data.ParameterDirection.Input, 0, 0, "wdate", global::System.Data.DataRowVersion.Current, false, null, "", "", "")); this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@complete", global::System.Data.SqlDbType.Bit, 0, global::System.Data.ParameterDirection.Input, 0, 0, "complete", global::System.Data.DataRowVersion.Current, false, null, "", "", "")); this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@uidname", global::System.Data.SqlDbType.VarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "uidname", global::System.Data.DataRowVersion.Current, false, null, "", "", "")); this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_idx", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "idx", global::System.Data.DataRowVersion.Original, false, null, "", "", "")); this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@IsNull_gcode", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "gcode", global::System.Data.DataRowVersion.Original, true, null, "", "", "")); this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_gcode", global::System.Data.SqlDbType.VarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "gcode", global::System.Data.DataRowVersion.Original, false, null, "", "", "")); this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@IsNull_project", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "project", global::System.Data.DataRowVersion.Original, true, null, "", "", "")); this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_project", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "project", global::System.Data.DataRowVersion.Original, false, null, "", "", "")); this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@IsNull_no", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "no", global::System.Data.DataRowVersion.Original, true, null, "", "", "")); this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_no", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "no", global::System.Data.DataRowVersion.Original, false, null, "", "", "")); this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@IsNull_seq", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "seq", global::System.Data.DataRowVersion.Original, true, null, "", "", "")); this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_seq", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "seq", global::System.Data.DataRowVersion.Original, false, null, "", "", "")); this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@IsNull_title", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "title", global::System.Data.DataRowVersion.Original, true, null, "", "", "")); this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_title", global::System.Data.SqlDbType.VarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "title", global::System.Data.DataRowVersion.Original, false, null, "", "", "")); this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@IsNull_cate", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "cate", global::System.Data.DataRowVersion.Original, true, null, "", "", "")); this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_cate", global::System.Data.SqlDbType.VarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "cate", global::System.Data.DataRowVersion.Original, false, null, "", "", "")); this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@IsNull_sw", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "sw", global::System.Data.DataRowVersion.Original, true, null, "", "", "")); this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_sw", global::System.Data.SqlDbType.VarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "sw", global::System.Data.DataRowVersion.Original, false, null, "", "", "")); this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@IsNull_ew", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "ew", global::System.Data.DataRowVersion.Original, true, null, "", "", "")); this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_ew", global::System.Data.SqlDbType.VarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "ew", global::System.Data.DataRowVersion.Original, false, null, "", "", "")); this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@IsNull_swa", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "swa", global::System.Data.DataRowVersion.Original, true, null, "", "", "")); this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_swa", global::System.Data.SqlDbType.VarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "swa", global::System.Data.DataRowVersion.Original, false, null, "", "", "")); this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@IsNull_ewa", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "ewa", global::System.Data.DataRowVersion.Original, true, null, "", "", "")); this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_ewa", global::System.Data.SqlDbType.VarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "ewa", global::System.Data.DataRowVersion.Original, false, null, "", "", "")); this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@IsNull_uid", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "uid", global::System.Data.DataRowVersion.Original, true, null, "", "", "")); this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_uid", global::System.Data.SqlDbType.VarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "uid", global::System.Data.DataRowVersion.Original, false, null, "", "", "")); this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@IsNull_appoval", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "appoval", global::System.Data.DataRowVersion.Original, true, null, "", "", "")); this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_appoval", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "appoval", global::System.Data.DataRowVersion.Original, false, null, "", "", "")); this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@IsNull_progress", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "progress", global::System.Data.DataRowVersion.Original, true, null, "", "", "")); this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_progress", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "progress", global::System.Data.DataRowVersion.Original, false, null, "", "", "")); this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_wuid", global::System.Data.SqlDbType.VarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "wuid", global::System.Data.DataRowVersion.Original, false, null, "", "", "")); this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_wdate", global::System.Data.SqlDbType.SmallDateTime, 0, global::System.Data.ParameterDirection.Input, 0, 0, "wdate", global::System.Data.DataRowVersion.Original, false, null, "", "", "")); this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@IsNull_complete", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "complete", global::System.Data.DataRowVersion.Original, true, null, "", "", "")); this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_complete", global::System.Data.SqlDbType.Bit, 0, global::System.Data.ParameterDirection.Input, 0, 0, "complete", global::System.Data.DataRowVersion.Original, false, null, "", "", "")); this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@IsNull_uidname", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "uidname", global::System.Data.DataRowVersion.Original, true, null, "", "", "")); this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_uidname", global::System.Data.SqlDbType.VarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "uidname", global::System.Data.DataRowVersion.Original, false, null, "", "", "")); this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@idx", global::System.Data.SqlDbType.Int, 4, global::System.Data.ParameterDirection.Input, 0, 0, "idx", global::System.Data.DataRowVersion.Current, false, null, "", "", "")); } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] private void InitConnection() { this._connection = new global::System.Data.SqlClient.SqlConnection(); this._connection.ConnectionString = global::Project.Properties.Settings.Default.gwcs; } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] private void InitCommandCollection() { this._commandCollection = new global::System.Data.SqlClient.SqlCommand[1]; this._commandCollection[0] = new global::System.Data.SqlClient.SqlCommand(); this._commandCollection[0].Connection = this.Connection; this._commandCollection[0].CommandText = "SELECT idx, gcode, project, no, seq, title, cate, sw, ew, swa, ewa, uid, memo, a" + "ppoval, progress, wuid, wdate, complete, uidname\r\nFROM EETGW_ProjectsSchedul" + "e WITH (nolock)\r\nWHERE (gcode = @gcode) AND (project = @project)\r\nORDER BY no D" + "ESC, seq"; this._commandCollection[0].CommandType = global::System.Data.CommandType.Text; this._commandCollection[0].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@gcode", global::System.Data.SqlDbType.VarChar, 20, global::System.Data.ParameterDirection.Input, 0, 0, "gcode", global::System.Data.DataRowVersion.Current, false, null, "", "", "")); this._commandCollection[0].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@project", global::System.Data.SqlDbType.Int, 4, global::System.Data.ParameterDirection.Input, 0, 0, "project", global::System.Data.DataRowVersion.Current, false, null, "", "", "")); } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")] [global::System.ComponentModel.DataObjectMethodAttribute(global::System.ComponentModel.DataObjectMethodType.Fill, true)] public virtual int Fill(dsProjects.EETGW_ProjectsScheduleDataTable dataTable, string gcode, global::System.Nullable project) { this.Adapter.SelectCommand = this.CommandCollection[0]; if ((gcode == null)) { this.Adapter.SelectCommand.Parameters[0].Value = global::System.DBNull.Value; } else { this.Adapter.SelectCommand.Parameters[0].Value = ((string)(gcode)); } if ((project.HasValue == true)) { this.Adapter.SelectCommand.Parameters[1].Value = ((int)(project.Value)); } else { this.Adapter.SelectCommand.Parameters[1].Value = global::System.DBNull.Value; } if ((this.ClearBeforeFill == true)) { dataTable.Clear(); } int returnValue = this.Adapter.Fill(dataTable); return returnValue; } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")] [global::System.ComponentModel.DataObjectMethodAttribute(global::System.ComponentModel.DataObjectMethodType.Select, true)] public virtual dsProjects.EETGW_ProjectsScheduleDataTable GetData(string gcode, global::System.Nullable project) { this.Adapter.SelectCommand = this.CommandCollection[0]; if ((gcode == null)) { this.Adapter.SelectCommand.Parameters[0].Value = global::System.DBNull.Value; } else { this.Adapter.SelectCommand.Parameters[0].Value = ((string)(gcode)); } if ((project.HasValue == true)) { this.Adapter.SelectCommand.Parameters[1].Value = ((int)(project.Value)); } else { this.Adapter.SelectCommand.Parameters[1].Value = global::System.DBNull.Value; } dsProjects.EETGW_ProjectsScheduleDataTable dataTable = new dsProjects.EETGW_ProjectsScheduleDataTable(); this.Adapter.Fill(dataTable); return dataTable; } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")] public virtual int Update(dsProjects.EETGW_ProjectsScheduleDataTable dataTable) { return this.Adapter.Update(dataTable); } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")] public virtual int Update(dsProjects dataSet) { return this.Adapter.Update(dataSet, "EETGW_ProjectsSchedule"); } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")] public virtual int Update(global::System.Data.DataRow dataRow) { return this.Adapter.Update(new global::System.Data.DataRow[] { dataRow}); } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")] public virtual int Update(global::System.Data.DataRow[] dataRows) { return this.Adapter.Update(dataRows); } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")] [global::System.ComponentModel.DataObjectMethodAttribute(global::System.ComponentModel.DataObjectMethodType.Delete, true)] public virtual int Delete( int Original_idx, string Original_gcode, global::System.Nullable Original_project, global::System.Nullable Original_no, global::System.Nullable Original_seq, string Original_title, string Original_cate, string Original_sw, string Original_ew, string Original_swa, string Original_ewa, string Original_uid, global::System.Nullable Original_appoval, global::System.Nullable Original_progress, string Original_wuid, System.DateTime Original_wdate, global::System.Nullable Original_complete, string Original_uidname) { this.Adapter.DeleteCommand.Parameters[0].Value = ((int)(Original_idx)); if ((Original_gcode == null)) { this.Adapter.DeleteCommand.Parameters[1].Value = ((object)(1)); this.Adapter.DeleteCommand.Parameters[2].Value = global::System.DBNull.Value; } else { this.Adapter.DeleteCommand.Parameters[1].Value = ((object)(0)); this.Adapter.DeleteCommand.Parameters[2].Value = ((string)(Original_gcode)); } if ((Original_project.HasValue == true)) { this.Adapter.DeleteCommand.Parameters[3].Value = ((object)(0)); this.Adapter.DeleteCommand.Parameters[4].Value = ((int)(Original_project.Value)); } else { this.Adapter.DeleteCommand.Parameters[3].Value = ((object)(1)); this.Adapter.DeleteCommand.Parameters[4].Value = global::System.DBNull.Value; } if ((Original_no.HasValue == true)) { this.Adapter.DeleteCommand.Parameters[5].Value = ((object)(0)); this.Adapter.DeleteCommand.Parameters[6].Value = ((int)(Original_no.Value)); } else { this.Adapter.DeleteCommand.Parameters[5].Value = ((object)(1)); this.Adapter.DeleteCommand.Parameters[6].Value = global::System.DBNull.Value; } if ((Original_seq.HasValue == true)) { this.Adapter.DeleteCommand.Parameters[7].Value = ((object)(0)); this.Adapter.DeleteCommand.Parameters[8].Value = ((int)(Original_seq.Value)); } else { this.Adapter.DeleteCommand.Parameters[7].Value = ((object)(1)); this.Adapter.DeleteCommand.Parameters[8].Value = global::System.DBNull.Value; } if ((Original_title == null)) { this.Adapter.DeleteCommand.Parameters[9].Value = ((object)(1)); this.Adapter.DeleteCommand.Parameters[10].Value = global::System.DBNull.Value; } else { this.Adapter.DeleteCommand.Parameters[9].Value = ((object)(0)); this.Adapter.DeleteCommand.Parameters[10].Value = ((string)(Original_title)); } if ((Original_cate == null)) { this.Adapter.DeleteCommand.Parameters[11].Value = ((object)(1)); this.Adapter.DeleteCommand.Parameters[12].Value = global::System.DBNull.Value; } else { this.Adapter.DeleteCommand.Parameters[11].Value = ((object)(0)); this.Adapter.DeleteCommand.Parameters[12].Value = ((string)(Original_cate)); } if ((Original_sw == null)) { this.Adapter.DeleteCommand.Parameters[13].Value = ((object)(1)); this.Adapter.DeleteCommand.Parameters[14].Value = global::System.DBNull.Value; } else { this.Adapter.DeleteCommand.Parameters[13].Value = ((object)(0)); this.Adapter.DeleteCommand.Parameters[14].Value = ((string)(Original_sw)); } if ((Original_ew == null)) { this.Adapter.DeleteCommand.Parameters[15].Value = ((object)(1)); this.Adapter.DeleteCommand.Parameters[16].Value = global::System.DBNull.Value; } else { this.Adapter.DeleteCommand.Parameters[15].Value = ((object)(0)); this.Adapter.DeleteCommand.Parameters[16].Value = ((string)(Original_ew)); } if ((Original_swa == null)) { this.Adapter.DeleteCommand.Parameters[17].Value = ((object)(1)); this.Adapter.DeleteCommand.Parameters[18].Value = global::System.DBNull.Value; } else { this.Adapter.DeleteCommand.Parameters[17].Value = ((object)(0)); this.Adapter.DeleteCommand.Parameters[18].Value = ((string)(Original_swa)); } if ((Original_ewa == null)) { this.Adapter.DeleteCommand.Parameters[19].Value = ((object)(1)); this.Adapter.DeleteCommand.Parameters[20].Value = global::System.DBNull.Value; } else { this.Adapter.DeleteCommand.Parameters[19].Value = ((object)(0)); this.Adapter.DeleteCommand.Parameters[20].Value = ((string)(Original_ewa)); } if ((Original_uid == null)) { this.Adapter.DeleteCommand.Parameters[21].Value = ((object)(1)); this.Adapter.DeleteCommand.Parameters[22].Value = global::System.DBNull.Value; } else { this.Adapter.DeleteCommand.Parameters[21].Value = ((object)(0)); this.Adapter.DeleteCommand.Parameters[22].Value = ((string)(Original_uid)); } if ((Original_appoval.HasValue == true)) { this.Adapter.DeleteCommand.Parameters[23].Value = ((object)(0)); this.Adapter.DeleteCommand.Parameters[24].Value = ((int)(Original_appoval.Value)); } else { this.Adapter.DeleteCommand.Parameters[23].Value = ((object)(1)); this.Adapter.DeleteCommand.Parameters[24].Value = global::System.DBNull.Value; } if ((Original_progress.HasValue == true)) { this.Adapter.DeleteCommand.Parameters[25].Value = ((object)(0)); this.Adapter.DeleteCommand.Parameters[26].Value = ((int)(Original_progress.Value)); } else { this.Adapter.DeleteCommand.Parameters[25].Value = ((object)(1)); this.Adapter.DeleteCommand.Parameters[26].Value = global::System.DBNull.Value; } if ((Original_wuid == null)) { throw new global::System.ArgumentNullException("Original_wuid"); } else { this.Adapter.DeleteCommand.Parameters[27].Value = ((string)(Original_wuid)); } this.Adapter.DeleteCommand.Parameters[28].Value = ((System.DateTime)(Original_wdate)); if ((Original_complete.HasValue == true)) { this.Adapter.DeleteCommand.Parameters[29].Value = ((object)(0)); this.Adapter.DeleteCommand.Parameters[30].Value = ((bool)(Original_complete.Value)); } else { this.Adapter.DeleteCommand.Parameters[29].Value = ((object)(1)); this.Adapter.DeleteCommand.Parameters[30].Value = global::System.DBNull.Value; } if ((Original_uidname == null)) { this.Adapter.DeleteCommand.Parameters[31].Value = ((object)(1)); this.Adapter.DeleteCommand.Parameters[32].Value = global::System.DBNull.Value; } else { this.Adapter.DeleteCommand.Parameters[31].Value = ((object)(0)); this.Adapter.DeleteCommand.Parameters[32].Value = ((string)(Original_uidname)); } global::System.Data.ConnectionState previousConnectionState = this.Adapter.DeleteCommand.Connection.State; if (((this.Adapter.DeleteCommand.Connection.State & global::System.Data.ConnectionState.Open) != global::System.Data.ConnectionState.Open)) { this.Adapter.DeleteCommand.Connection.Open(); } try { int returnValue = this.Adapter.DeleteCommand.ExecuteNonQuery(); return returnValue; } finally { if ((previousConnectionState == global::System.Data.ConnectionState.Closed)) { this.Adapter.DeleteCommand.Connection.Close(); } } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")] [global::System.ComponentModel.DataObjectMethodAttribute(global::System.ComponentModel.DataObjectMethodType.Insert, true)] public virtual int Insert( string gcode, global::System.Nullable project, global::System.Nullable no, global::System.Nullable seq, string title, string cate, string sw, string ew, string swa, string ewa, string uid, string memo, global::System.Nullable appoval, global::System.Nullable progress, string wuid, System.DateTime wdate, global::System.Nullable complete, string uidname) { if ((gcode == null)) { this.Adapter.InsertCommand.Parameters[0].Value = global::System.DBNull.Value; } else { this.Adapter.InsertCommand.Parameters[0].Value = ((string)(gcode)); } if ((project.HasValue == true)) { this.Adapter.InsertCommand.Parameters[1].Value = ((int)(project.Value)); } else { this.Adapter.InsertCommand.Parameters[1].Value = global::System.DBNull.Value; } if ((no.HasValue == true)) { this.Adapter.InsertCommand.Parameters[2].Value = ((int)(no.Value)); } else { this.Adapter.InsertCommand.Parameters[2].Value = global::System.DBNull.Value; } if ((seq.HasValue == true)) { this.Adapter.InsertCommand.Parameters[3].Value = ((int)(seq.Value)); } else { this.Adapter.InsertCommand.Parameters[3].Value = global::System.DBNull.Value; } if ((title == null)) { this.Adapter.InsertCommand.Parameters[4].Value = global::System.DBNull.Value; } else { this.Adapter.InsertCommand.Parameters[4].Value = ((string)(title)); } if ((cate == null)) { this.Adapter.InsertCommand.Parameters[5].Value = global::System.DBNull.Value; } else { this.Adapter.InsertCommand.Parameters[5].Value = ((string)(cate)); } if ((sw == null)) { this.Adapter.InsertCommand.Parameters[6].Value = global::System.DBNull.Value; } else { this.Adapter.InsertCommand.Parameters[6].Value = ((string)(sw)); } if ((ew == null)) { this.Adapter.InsertCommand.Parameters[7].Value = global::System.DBNull.Value; } else { this.Adapter.InsertCommand.Parameters[7].Value = ((string)(ew)); } if ((swa == null)) { this.Adapter.InsertCommand.Parameters[8].Value = global::System.DBNull.Value; } else { this.Adapter.InsertCommand.Parameters[8].Value = ((string)(swa)); } if ((ewa == null)) { this.Adapter.InsertCommand.Parameters[9].Value = global::System.DBNull.Value; } else { this.Adapter.InsertCommand.Parameters[9].Value = ((string)(ewa)); } if ((uid == null)) { this.Adapter.InsertCommand.Parameters[10].Value = global::System.DBNull.Value; } else { this.Adapter.InsertCommand.Parameters[10].Value = ((string)(uid)); } if ((memo == null)) { this.Adapter.InsertCommand.Parameters[11].Value = global::System.DBNull.Value; } else { this.Adapter.InsertCommand.Parameters[11].Value = ((string)(memo)); } if ((appoval.HasValue == true)) { this.Adapter.InsertCommand.Parameters[12].Value = ((int)(appoval.Value)); } else { this.Adapter.InsertCommand.Parameters[12].Value = global::System.DBNull.Value; } if ((progress.HasValue == true)) { this.Adapter.InsertCommand.Parameters[13].Value = ((int)(progress.Value)); } else { this.Adapter.InsertCommand.Parameters[13].Value = global::System.DBNull.Value; } if ((wuid == null)) { throw new global::System.ArgumentNullException("wuid"); } else { this.Adapter.InsertCommand.Parameters[14].Value = ((string)(wuid)); } this.Adapter.InsertCommand.Parameters[15].Value = ((System.DateTime)(wdate)); if ((complete.HasValue == true)) { this.Adapter.InsertCommand.Parameters[16].Value = ((bool)(complete.Value)); } else { this.Adapter.InsertCommand.Parameters[16].Value = global::System.DBNull.Value; } if ((uidname == null)) { this.Adapter.InsertCommand.Parameters[17].Value = global::System.DBNull.Value; } else { this.Adapter.InsertCommand.Parameters[17].Value = ((string)(uidname)); } global::System.Data.ConnectionState previousConnectionState = this.Adapter.InsertCommand.Connection.State; if (((this.Adapter.InsertCommand.Connection.State & global::System.Data.ConnectionState.Open) != global::System.Data.ConnectionState.Open)) { this.Adapter.InsertCommand.Connection.Open(); } try { int returnValue = this.Adapter.InsertCommand.ExecuteNonQuery(); return returnValue; } finally { if ((previousConnectionState == global::System.Data.ConnectionState.Closed)) { this.Adapter.InsertCommand.Connection.Close(); } } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")] [global::System.ComponentModel.DataObjectMethodAttribute(global::System.ComponentModel.DataObjectMethodType.Update, true)] public virtual int Update( string gcode, global::System.Nullable project, global::System.Nullable no, global::System.Nullable seq, string title, string cate, string sw, string ew, string swa, string ewa, string uid, string memo, global::System.Nullable appoval, global::System.Nullable progress, string wuid, System.DateTime wdate, global::System.Nullable complete, string uidname, int Original_idx, string Original_gcode, global::System.Nullable Original_project, global::System.Nullable Original_no, global::System.Nullable Original_seq, string Original_title, string Original_cate, string Original_sw, string Original_ew, string Original_swa, string Original_ewa, string Original_uid, global::System.Nullable Original_appoval, global::System.Nullable Original_progress, string Original_wuid, System.DateTime Original_wdate, global::System.Nullable Original_complete, string Original_uidname, int idx) { if ((gcode == null)) { this.Adapter.UpdateCommand.Parameters[0].Value = global::System.DBNull.Value; } else { this.Adapter.UpdateCommand.Parameters[0].Value = ((string)(gcode)); } if ((project.HasValue == true)) { this.Adapter.UpdateCommand.Parameters[1].Value = ((int)(project.Value)); } else { this.Adapter.UpdateCommand.Parameters[1].Value = global::System.DBNull.Value; } if ((no.HasValue == true)) { this.Adapter.UpdateCommand.Parameters[2].Value = ((int)(no.Value)); } else { this.Adapter.UpdateCommand.Parameters[2].Value = global::System.DBNull.Value; } if ((seq.HasValue == true)) { this.Adapter.UpdateCommand.Parameters[3].Value = ((int)(seq.Value)); } else { this.Adapter.UpdateCommand.Parameters[3].Value = global::System.DBNull.Value; } if ((title == null)) { this.Adapter.UpdateCommand.Parameters[4].Value = global::System.DBNull.Value; } else { this.Adapter.UpdateCommand.Parameters[4].Value = ((string)(title)); } if ((cate == null)) { this.Adapter.UpdateCommand.Parameters[5].Value = global::System.DBNull.Value; } else { this.Adapter.UpdateCommand.Parameters[5].Value = ((string)(cate)); } if ((sw == null)) { this.Adapter.UpdateCommand.Parameters[6].Value = global::System.DBNull.Value; } else { this.Adapter.UpdateCommand.Parameters[6].Value = ((string)(sw)); } if ((ew == null)) { this.Adapter.UpdateCommand.Parameters[7].Value = global::System.DBNull.Value; } else { this.Adapter.UpdateCommand.Parameters[7].Value = ((string)(ew)); } if ((swa == null)) { this.Adapter.UpdateCommand.Parameters[8].Value = global::System.DBNull.Value; } else { this.Adapter.UpdateCommand.Parameters[8].Value = ((string)(swa)); } if ((ewa == null)) { this.Adapter.UpdateCommand.Parameters[9].Value = global::System.DBNull.Value; } else { this.Adapter.UpdateCommand.Parameters[9].Value = ((string)(ewa)); } if ((uid == null)) { this.Adapter.UpdateCommand.Parameters[10].Value = global::System.DBNull.Value; } else { this.Adapter.UpdateCommand.Parameters[10].Value = ((string)(uid)); } if ((memo == null)) { this.Adapter.UpdateCommand.Parameters[11].Value = global::System.DBNull.Value; } else { this.Adapter.UpdateCommand.Parameters[11].Value = ((string)(memo)); } if ((appoval.HasValue == true)) { this.Adapter.UpdateCommand.Parameters[12].Value = ((int)(appoval.Value)); } else { this.Adapter.UpdateCommand.Parameters[12].Value = global::System.DBNull.Value; } if ((progress.HasValue == true)) { this.Adapter.UpdateCommand.Parameters[13].Value = ((int)(progress.Value)); } else { this.Adapter.UpdateCommand.Parameters[13].Value = global::System.DBNull.Value; } if ((wuid == null)) { throw new global::System.ArgumentNullException("wuid"); } else { this.Adapter.UpdateCommand.Parameters[14].Value = ((string)(wuid)); } this.Adapter.UpdateCommand.Parameters[15].Value = ((System.DateTime)(wdate)); if ((complete.HasValue == true)) { this.Adapter.UpdateCommand.Parameters[16].Value = ((bool)(complete.Value)); } else { this.Adapter.UpdateCommand.Parameters[16].Value = global::System.DBNull.Value; } if ((uidname == null)) { this.Adapter.UpdateCommand.Parameters[17].Value = global::System.DBNull.Value; } else { this.Adapter.UpdateCommand.Parameters[17].Value = ((string)(uidname)); } this.Adapter.UpdateCommand.Parameters[18].Value = ((int)(Original_idx)); if ((Original_gcode == null)) { this.Adapter.UpdateCommand.Parameters[19].Value = ((object)(1)); this.Adapter.UpdateCommand.Parameters[20].Value = global::System.DBNull.Value; } else { this.Adapter.UpdateCommand.Parameters[19].Value = ((object)(0)); this.Adapter.UpdateCommand.Parameters[20].Value = ((string)(Original_gcode)); } if ((Original_project.HasValue == true)) { this.Adapter.UpdateCommand.Parameters[21].Value = ((object)(0)); this.Adapter.UpdateCommand.Parameters[22].Value = ((int)(Original_project.Value)); } else { this.Adapter.UpdateCommand.Parameters[21].Value = ((object)(1)); this.Adapter.UpdateCommand.Parameters[22].Value = global::System.DBNull.Value; } if ((Original_no.HasValue == true)) { this.Adapter.UpdateCommand.Parameters[23].Value = ((object)(0)); this.Adapter.UpdateCommand.Parameters[24].Value = ((int)(Original_no.Value)); } else { this.Adapter.UpdateCommand.Parameters[23].Value = ((object)(1)); this.Adapter.UpdateCommand.Parameters[24].Value = global::System.DBNull.Value; } if ((Original_seq.HasValue == true)) { this.Adapter.UpdateCommand.Parameters[25].Value = ((object)(0)); this.Adapter.UpdateCommand.Parameters[26].Value = ((int)(Original_seq.Value)); } else { this.Adapter.UpdateCommand.Parameters[25].Value = ((object)(1)); this.Adapter.UpdateCommand.Parameters[26].Value = global::System.DBNull.Value; } if ((Original_title == null)) { this.Adapter.UpdateCommand.Parameters[27].Value = ((object)(1)); this.Adapter.UpdateCommand.Parameters[28].Value = global::System.DBNull.Value; } else { this.Adapter.UpdateCommand.Parameters[27].Value = ((object)(0)); this.Adapter.UpdateCommand.Parameters[28].Value = ((string)(Original_title)); } if ((Original_cate == null)) { this.Adapter.UpdateCommand.Parameters[29].Value = ((object)(1)); this.Adapter.UpdateCommand.Parameters[30].Value = global::System.DBNull.Value; } else { this.Adapter.UpdateCommand.Parameters[29].Value = ((object)(0)); this.Adapter.UpdateCommand.Parameters[30].Value = ((string)(Original_cate)); } if ((Original_sw == null)) { this.Adapter.UpdateCommand.Parameters[31].Value = ((object)(1)); this.Adapter.UpdateCommand.Parameters[32].Value = global::System.DBNull.Value; } else { this.Adapter.UpdateCommand.Parameters[31].Value = ((object)(0)); this.Adapter.UpdateCommand.Parameters[32].Value = ((string)(Original_sw)); } if ((Original_ew == null)) { this.Adapter.UpdateCommand.Parameters[33].Value = ((object)(1)); this.Adapter.UpdateCommand.Parameters[34].Value = global::System.DBNull.Value; } else { this.Adapter.UpdateCommand.Parameters[33].Value = ((object)(0)); this.Adapter.UpdateCommand.Parameters[34].Value = ((string)(Original_ew)); } if ((Original_swa == null)) { this.Adapter.UpdateCommand.Parameters[35].Value = ((object)(1)); this.Adapter.UpdateCommand.Parameters[36].Value = global::System.DBNull.Value; } else { this.Adapter.UpdateCommand.Parameters[35].Value = ((object)(0)); this.Adapter.UpdateCommand.Parameters[36].Value = ((string)(Original_swa)); } if ((Original_ewa == null)) { this.Adapter.UpdateCommand.Parameters[37].Value = ((object)(1)); this.Adapter.UpdateCommand.Parameters[38].Value = global::System.DBNull.Value; } else { this.Adapter.UpdateCommand.Parameters[37].Value = ((object)(0)); this.Adapter.UpdateCommand.Parameters[38].Value = ((string)(Original_ewa)); } if ((Original_uid == null)) { this.Adapter.UpdateCommand.Parameters[39].Value = ((object)(1)); this.Adapter.UpdateCommand.Parameters[40].Value = global::System.DBNull.Value; } else { this.Adapter.UpdateCommand.Parameters[39].Value = ((object)(0)); this.Adapter.UpdateCommand.Parameters[40].Value = ((string)(Original_uid)); } if ((Original_appoval.HasValue == true)) { this.Adapter.UpdateCommand.Parameters[41].Value = ((object)(0)); this.Adapter.UpdateCommand.Parameters[42].Value = ((int)(Original_appoval.Value)); } else { this.Adapter.UpdateCommand.Parameters[41].Value = ((object)(1)); this.Adapter.UpdateCommand.Parameters[42].Value = global::System.DBNull.Value; } if ((Original_progress.HasValue == true)) { this.Adapter.UpdateCommand.Parameters[43].Value = ((object)(0)); this.Adapter.UpdateCommand.Parameters[44].Value = ((int)(Original_progress.Value)); } else { this.Adapter.UpdateCommand.Parameters[43].Value = ((object)(1)); this.Adapter.UpdateCommand.Parameters[44].Value = global::System.DBNull.Value; } if ((Original_wuid == null)) { throw new global::System.ArgumentNullException("Original_wuid"); } else { this.Adapter.UpdateCommand.Parameters[45].Value = ((string)(Original_wuid)); } this.Adapter.UpdateCommand.Parameters[46].Value = ((System.DateTime)(Original_wdate)); if ((Original_complete.HasValue == true)) { this.Adapter.UpdateCommand.Parameters[47].Value = ((object)(0)); this.Adapter.UpdateCommand.Parameters[48].Value = ((bool)(Original_complete.Value)); } else { this.Adapter.UpdateCommand.Parameters[47].Value = ((object)(1)); this.Adapter.UpdateCommand.Parameters[48].Value = global::System.DBNull.Value; } if ((Original_uidname == null)) { this.Adapter.UpdateCommand.Parameters[49].Value = ((object)(1)); this.Adapter.UpdateCommand.Parameters[50].Value = global::System.DBNull.Value; } else { this.Adapter.UpdateCommand.Parameters[49].Value = ((object)(0)); this.Adapter.UpdateCommand.Parameters[50].Value = ((string)(Original_uidname)); } this.Adapter.UpdateCommand.Parameters[51].Value = ((int)(idx)); global::System.Data.ConnectionState previousConnectionState = this.Adapter.UpdateCommand.Connection.State; if (((this.Adapter.UpdateCommand.Connection.State & global::System.Data.ConnectionState.Open) != global::System.Data.ConnectionState.Open)) { this.Adapter.UpdateCommand.Connection.Open(); } try { int returnValue = this.Adapter.UpdateCommand.ExecuteNonQuery(); return returnValue; } finally { if ((previousConnectionState == global::System.Data.ConnectionState.Closed)) { this.Adapter.UpdateCommand.Connection.Close(); } } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")] [global::System.ComponentModel.DataObjectMethodAttribute(global::System.ComponentModel.DataObjectMethodType.Update, true)] public virtual int Update( string gcode, global::System.Nullable project, global::System.Nullable no, global::System.Nullable seq, string title, string cate, string sw, string ew, string swa, string ewa, string uid, string memo, global::System.Nullable appoval, global::System.Nullable progress, string wuid, System.DateTime wdate, global::System.Nullable complete, string uidname, int Original_idx, string Original_gcode, global::System.Nullable Original_project, global::System.Nullable Original_no, global::System.Nullable Original_seq, string Original_title, string Original_cate, string Original_sw, string Original_ew, string Original_swa, string Original_ewa, string Original_uid, global::System.Nullable Original_appoval, global::System.Nullable Original_progress, string Original_wuid, System.DateTime Original_wdate, global::System.Nullable Original_complete, string Original_uidname) { return this.Update(gcode, project, no, seq, title, cate, sw, ew, swa, ewa, uid, memo, appoval, progress, wuid, wdate, complete, uidname, Original_idx, Original_gcode, Original_project, Original_no, Original_seq, Original_title, Original_cate, Original_sw, Original_ew, Original_swa, Original_ewa, Original_uid, Original_appoval, Original_progress, Original_wuid, Original_wdate, Original_complete, Original_uidname, Original_idx); } } /// ///Represents the connection and commands used to retrieve and save data. /// [global::System.ComponentModel.DesignerCategoryAttribute("code")] [global::System.ComponentModel.ToolboxItem(true)] [global::System.ComponentModel.DataObjectAttribute(true)] [global::System.ComponentModel.DesignerAttribute("Microsoft.VSDesigner.DataSource.Design.TableAdapterDesigner, Microsoft.VSDesigner" + ", Version=10.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a")] [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")] public partial class ProjectsPartTableAdapter : global::System.ComponentModel.Component { private global::System.Data.SqlClient.SqlDataAdapter _adapter; private global::System.Data.SqlClient.SqlConnection _connection; private global::System.Data.SqlClient.SqlTransaction _transaction; private global::System.Data.SqlClient.SqlCommand[] _commandCollection; private bool _clearBeforeFill; [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public ProjectsPartTableAdapter() { this.ClearBeforeFill = true; } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] protected internal global::System.Data.SqlClient.SqlDataAdapter Adapter { get { if ((this._adapter == null)) { this.InitAdapter(); } return this._adapter; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] internal global::System.Data.SqlClient.SqlConnection Connection { get { if ((this._connection == null)) { this.InitConnection(); } return this._connection; } set { this._connection = value; if ((this.Adapter.InsertCommand != null)) { this.Adapter.InsertCommand.Connection = value; } if ((this.Adapter.DeleteCommand != null)) { this.Adapter.DeleteCommand.Connection = value; } if ((this.Adapter.UpdateCommand != null)) { this.Adapter.UpdateCommand.Connection = value; } for (int i = 0; (i < this.CommandCollection.Length); i = (i + 1)) { if ((this.CommandCollection[i] != null)) { ((global::System.Data.SqlClient.SqlCommand)(this.CommandCollection[i])).Connection = value; } } } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] internal global::System.Data.SqlClient.SqlTransaction Transaction { get { return this._transaction; } set { this._transaction = value; for (int i = 0; (i < this.CommandCollection.Length); i = (i + 1)) { this.CommandCollection[i].Transaction = this._transaction; } if (((this.Adapter != null) && (this.Adapter.DeleteCommand != null))) { this.Adapter.DeleteCommand.Transaction = this._transaction; } if (((this.Adapter != null) && (this.Adapter.InsertCommand != null))) { this.Adapter.InsertCommand.Transaction = this._transaction; } if (((this.Adapter != null) && (this.Adapter.UpdateCommand != null))) { this.Adapter.UpdateCommand.Transaction = this._transaction; } } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] protected global::System.Data.SqlClient.SqlCommand[] CommandCollection { get { if ((this._commandCollection == null)) { this.InitCommandCollection(); } return this._commandCollection; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public bool ClearBeforeFill { get { return this._clearBeforeFill; } set { this._clearBeforeFill = value; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] private void InitAdapter() { this._adapter = new global::System.Data.SqlClient.SqlDataAdapter(); global::System.Data.Common.DataTableMapping tableMapping = new global::System.Data.Common.DataTableMapping(); tableMapping.SourceTable = "Table"; tableMapping.DataSetTable = "ProjectsPart"; tableMapping.ColumnMappings.Add("idx", "idx"); tableMapping.ColumnMappings.Add("no", "no"); tableMapping.ColumnMappings.Add("Project", "Project"); tableMapping.ColumnMappings.Add("ItemGroup", "ItemGroup"); tableMapping.ColumnMappings.Add("ItemModel", "ItemModel"); tableMapping.ColumnMappings.Add("ItemUnit", "ItemUnit"); tableMapping.ColumnMappings.Add("ItemName", "ItemName"); tableMapping.ColumnMappings.Add("ItemSid", "ItemSid"); tableMapping.ColumnMappings.Add("ItemSupply", "ItemSupply"); tableMapping.ColumnMappings.Add("ItemSupplyidx", "ItemSupplyidx"); tableMapping.ColumnMappings.Add("ItemManu", "ItemManu"); tableMapping.ColumnMappings.Add("Item", "Item"); tableMapping.ColumnMappings.Add("option1", "option1"); tableMapping.ColumnMappings.Add("option2", "option2"); tableMapping.ColumnMappings.Add("option3", "option3"); tableMapping.ColumnMappings.Add("qty", "qty"); tableMapping.ColumnMappings.Add("qtyn", "qtyn"); tableMapping.ColumnMappings.Add("price", "price"); tableMapping.ColumnMappings.Add("priceD", "priceD"); tableMapping.ColumnMappings.Add("amt", "amt"); tableMapping.ColumnMappings.Add("amtn", "amtn"); tableMapping.ColumnMappings.Add("jago", "jago"); tableMapping.ColumnMappings.Add("remark", "remark"); tableMapping.ColumnMappings.Add("memo", "memo"); tableMapping.ColumnMappings.Add("wuid", "wuid"); tableMapping.ColumnMappings.Add("wdate", "wdate"); tableMapping.ColumnMappings.Add("import", "import"); tableMapping.ColumnMappings.Add("qtyjago", "qtyjago"); tableMapping.ColumnMappings.Add("qtybuy", "qtybuy"); tableMapping.ColumnMappings.Add("qtyin", "qtyin"); tableMapping.ColumnMappings.Add("bbuy", "bbuy"); tableMapping.ColumnMappings.Add("bconfirm", "bconfirm"); tableMapping.ColumnMappings.Add("bCancel", "bCancel"); tableMapping.ColumnMappings.Add("reqUser", "reqUser"); tableMapping.ColumnMappings.Add("recvUser", "recvUser"); tableMapping.ColumnMappings.Add("recvDate", "recvDate"); this._adapter.TableMappings.Add(tableMapping); this._adapter.DeleteCommand = new global::System.Data.SqlClient.SqlCommand(); this._adapter.DeleteCommand.Connection = this.Connection; this._adapter.DeleteCommand.CommandText = "DELETE FROM [ProjectsPart] WHERE (([idx] = @Original_idx) AND ((@IsNull_no = 1 AN" + "D [no] IS NULL) OR ([no] = @Original_no)) AND ((@IsNull_Project = 1 AND [Project" + "] IS NULL) OR ([Project] = @Original_Project)) AND ((@IsNull_ItemGroup = 1 AND [" + "ItemGroup] IS NULL) OR ([ItemGroup] = @Original_ItemGroup)) AND ((@IsNull_ItemMo" + "del = 1 AND [ItemModel] IS NULL) OR ([ItemModel] = @Original_ItemModel)) AND ((@" + "IsNull_ItemUnit = 1 AND [ItemUnit] IS NULL) OR ([ItemUnit] = @Original_ItemUnit)" + ") AND ((@IsNull_ItemName = 1 AND [ItemName] IS NULL) OR ([ItemName] = @Original_" + "ItemName)) AND ((@IsNull_ItemSid = 1 AND [ItemSid] IS NULL) OR ([ItemSid] = @Ori" + "ginal_ItemSid)) AND ((@IsNull_ItemSupply = 1 AND [ItemSupply] IS NULL) OR ([Item" + "Supply] = @Original_ItemSupply)) AND ((@IsNull_ItemSupplyidx = 1 AND [ItemSupply" + "idx] IS NULL) OR ([ItemSupplyidx] = @Original_ItemSupplyidx)) AND ((@IsNull_Item" + "Manu = 1 AND [ItemManu] IS NULL) OR ([ItemManu] = @Original_ItemManu)) AND ((@Is" + "Null_Item = 1 AND [Item] IS NULL) OR ([Item] = @Original_Item)) AND ((@IsNull_op" + "tion1 = 1 AND [option1] IS NULL) OR ([option1] = @Original_option1)) AND ((@IsNu" + "ll_option2 = 1 AND [option2] IS NULL) OR ([option2] = @Original_option2)) AND ((" + "@IsNull_option3 = 1 AND [option3] IS NULL) OR ([option3] = @Original_option3)) A" + "ND ((@IsNull_qty = 1 AND [qty] IS NULL) OR ([qty] = @Original_qty)) AND ((@IsNul" + "l_qtyn = 1 AND [qtyn] IS NULL) OR ([qtyn] = @Original_qtyn)) AND ((@IsNull_price" + " = 1 AND [price] IS NULL) OR ([price] = @Original_price)) AND ((@IsNull_priceD =" + " 1 AND [priceD] IS NULL) OR ([priceD] = @Original_priceD)) AND ((@IsNull_amt = 1" + " AND [amt] IS NULL) OR ([amt] = @Original_amt)) AND ((@IsNull_amtn = 1 AND [amtn" + "] IS NULL) OR ([amtn] = @Original_amtn)) AND ((@IsNull_jago = 1 AND [jago] IS NU" + "LL) OR ([jago] = @Original_jago)) AND ((@IsNull_remark = 1 AND [remark] IS NULL)" + " OR ([remark] = @Original_remark)) AND ((@IsNull_memo = 1 AND [memo] IS NULL) OR" + " ([memo] = @Original_memo)) AND ([wuid] = @Original_wuid) AND ([wdate] = @Origin" + "al_wdate) AND ((@IsNull_import = 1 AND [import] IS NULL) OR ([import] = @Origina" + "l_import)) AND ((@IsNull_qtyjago = 1 AND [qtyjago] IS NULL) OR ([qtyjago] = @Ori" + "ginal_qtyjago)) AND ((@IsNull_qtybuy = 1 AND [qtybuy] IS NULL) OR ([qtybuy] = @O" + "riginal_qtybuy)) AND ((@IsNull_qtyin = 1 AND [qtyin] IS NULL) OR ([qtyin] = @Ori" + "ginal_qtyin)) AND ((@IsNull_bbuy = 1 AND [bbuy] IS NULL) OR ([bbuy] = @Original_" + "bbuy)) AND ((@IsNull_bconfirm = 1 AND [bconfirm] IS NULL) OR ([bconfirm] = @Orig" + "inal_bconfirm)) AND ((@IsNull_bCancel = 1 AND [bCancel] IS NULL) OR ([bCancel] =" + " @Original_bCancel)) AND ((@IsNull_reqUser = 1 AND [reqUser] IS NULL) OR ([reqUs" + "er] = @Original_reqUser)) AND ((@IsNull_recvUser = 1 AND [recvUser] IS NULL) OR " + "([recvUser] = @Original_recvUser)) AND ((@IsNull_recvDate = 1 AND [recvDate] IS " + "NULL) OR ([recvDate] = @Original_recvDate)))"; this._adapter.DeleteCommand.CommandType = global::System.Data.CommandType.Text; this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_idx", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "idx", global::System.Data.DataRowVersion.Original, false, null, "", "", "")); this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@IsNull_no", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "no", global::System.Data.DataRowVersion.Original, true, null, "", "", "")); this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_no", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "no", global::System.Data.DataRowVersion.Original, false, null, "", "", "")); this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@IsNull_Project", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "Project", global::System.Data.DataRowVersion.Original, true, null, "", "", "")); this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_Project", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "Project", global::System.Data.DataRowVersion.Original, false, null, "", "", "")); this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@IsNull_ItemGroup", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "ItemGroup", global::System.Data.DataRowVersion.Original, true, null, "", "", "")); this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_ItemGroup", global::System.Data.SqlDbType.VarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "ItemGroup", global::System.Data.DataRowVersion.Original, false, null, "", "", "")); this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@IsNull_ItemModel", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "ItemModel", global::System.Data.DataRowVersion.Original, true, null, "", "", "")); this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_ItemModel", global::System.Data.SqlDbType.NVarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "ItemModel", global::System.Data.DataRowVersion.Original, false, null, "", "", "")); this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@IsNull_ItemUnit", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "ItemUnit", global::System.Data.DataRowVersion.Original, true, null, "", "", "")); this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_ItemUnit", global::System.Data.SqlDbType.VarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "ItemUnit", global::System.Data.DataRowVersion.Original, false, null, "", "", "")); this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@IsNull_ItemName", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "ItemName", global::System.Data.DataRowVersion.Original, true, null, "", "", "")); this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_ItemName", global::System.Data.SqlDbType.NVarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "ItemName", global::System.Data.DataRowVersion.Original, false, null, "", "", "")); this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@IsNull_ItemSid", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "ItemSid", global::System.Data.DataRowVersion.Original, true, null, "", "", "")); this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_ItemSid", global::System.Data.SqlDbType.VarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "ItemSid", global::System.Data.DataRowVersion.Original, false, null, "", "", "")); this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@IsNull_ItemSupply", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "ItemSupply", global::System.Data.DataRowVersion.Original, true, null, "", "", "")); this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_ItemSupply", global::System.Data.SqlDbType.NVarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "ItemSupply", global::System.Data.DataRowVersion.Original, false, null, "", "", "")); this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@IsNull_ItemSupplyidx", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "ItemSupplyidx", global::System.Data.DataRowVersion.Original, true, null, "", "", "")); this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_ItemSupplyidx", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "ItemSupplyidx", global::System.Data.DataRowVersion.Original, false, null, "", "", "")); this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@IsNull_ItemManu", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "ItemManu", global::System.Data.DataRowVersion.Original, true, null, "", "", "")); this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_ItemManu", global::System.Data.SqlDbType.NVarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "ItemManu", global::System.Data.DataRowVersion.Original, false, null, "", "", "")); this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@IsNull_Item", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "Item", global::System.Data.DataRowVersion.Original, true, null, "", "", "")); this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_Item", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "Item", global::System.Data.DataRowVersion.Original, false, null, "", "", "")); this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@IsNull_option1", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "option1", global::System.Data.DataRowVersion.Original, true, null, "", "", "")); this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_option1", global::System.Data.SqlDbType.NVarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "option1", global::System.Data.DataRowVersion.Original, false, null, "", "", "")); this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@IsNull_option2", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "option2", global::System.Data.DataRowVersion.Original, true, null, "", "", "")); this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_option2", global::System.Data.SqlDbType.NVarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "option2", global::System.Data.DataRowVersion.Original, false, null, "", "", "")); this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@IsNull_option3", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "option3", global::System.Data.DataRowVersion.Original, true, null, "", "", "")); this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_option3", global::System.Data.SqlDbType.NVarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "option3", global::System.Data.DataRowVersion.Original, false, null, "", "", "")); this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@IsNull_qty", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "qty", global::System.Data.DataRowVersion.Original, true, null, "", "", "")); this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_qty", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "qty", global::System.Data.DataRowVersion.Original, false, null, "", "", "")); this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@IsNull_qtyn", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "qtyn", global::System.Data.DataRowVersion.Original, true, null, "", "", "")); this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_qtyn", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "qtyn", global::System.Data.DataRowVersion.Original, false, null, "", "", "")); this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@IsNull_price", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "price", global::System.Data.DataRowVersion.Original, true, null, "", "", "")); this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_price", global::System.Data.SqlDbType.Decimal, 0, global::System.Data.ParameterDirection.Input, 18, 0, "price", global::System.Data.DataRowVersion.Original, false, null, "", "", "")); this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@IsNull_priceD", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "priceD", global::System.Data.DataRowVersion.Original, true, null, "", "", "")); this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_priceD", global::System.Data.SqlDbType.Decimal, 0, global::System.Data.ParameterDirection.Input, 18, 0, "priceD", global::System.Data.DataRowVersion.Original, false, null, "", "", "")); this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@IsNull_amt", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "amt", global::System.Data.DataRowVersion.Original, true, null, "", "", "")); this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_amt", global::System.Data.SqlDbType.Decimal, 0, global::System.Data.ParameterDirection.Input, 18, 0, "amt", global::System.Data.DataRowVersion.Original, false, null, "", "", "")); this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@IsNull_amtn", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "amtn", global::System.Data.DataRowVersion.Original, true, null, "", "", "")); this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_amtn", global::System.Data.SqlDbType.Decimal, 0, global::System.Data.ParameterDirection.Input, 18, 0, "amtn", global::System.Data.DataRowVersion.Original, false, null, "", "", "")); this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@IsNull_jago", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "jago", global::System.Data.DataRowVersion.Original, true, null, "", "", "")); this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_jago", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "jago", global::System.Data.DataRowVersion.Original, false, null, "", "", "")); this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@IsNull_remark", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "remark", global::System.Data.DataRowVersion.Original, true, null, "", "", "")); this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_remark", global::System.Data.SqlDbType.NVarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "remark", global::System.Data.DataRowVersion.Original, false, null, "", "", "")); this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@IsNull_memo", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "memo", global::System.Data.DataRowVersion.Original, true, null, "", "", "")); this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_memo", global::System.Data.SqlDbType.NVarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "memo", global::System.Data.DataRowVersion.Original, false, null, "", "", "")); this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_wuid", global::System.Data.SqlDbType.VarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "wuid", global::System.Data.DataRowVersion.Original, false, null, "", "", "")); this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_wdate", global::System.Data.SqlDbType.SmallDateTime, 0, global::System.Data.ParameterDirection.Input, 0, 0, "wdate", global::System.Data.DataRowVersion.Original, false, null, "", "", "")); this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@IsNull_import", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "import", global::System.Data.DataRowVersion.Original, true, null, "", "", "")); this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_import", global::System.Data.SqlDbType.Bit, 0, global::System.Data.ParameterDirection.Input, 0, 0, "import", global::System.Data.DataRowVersion.Original, false, null, "", "", "")); this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@IsNull_qtyjago", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "qtyjago", global::System.Data.DataRowVersion.Original, true, null, "", "", "")); this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_qtyjago", global::System.Data.SqlDbType.VarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "qtyjago", global::System.Data.DataRowVersion.Original, false, null, "", "", "")); this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@IsNull_qtybuy", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "qtybuy", global::System.Data.DataRowVersion.Original, true, null, "", "", "")); this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_qtybuy", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "qtybuy", global::System.Data.DataRowVersion.Original, false, null, "", "", "")); this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@IsNull_qtyin", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "qtyin", global::System.Data.DataRowVersion.Original, true, null, "", "", "")); this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_qtyin", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "qtyin", global::System.Data.DataRowVersion.Original, false, null, "", "", "")); this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@IsNull_bbuy", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "bbuy", global::System.Data.DataRowVersion.Original, true, null, "", "", "")); this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_bbuy", global::System.Data.SqlDbType.Bit, 0, global::System.Data.ParameterDirection.Input, 0, 0, "bbuy", global::System.Data.DataRowVersion.Original, false, null, "", "", "")); this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@IsNull_bconfirm", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "bconfirm", global::System.Data.DataRowVersion.Original, true, null, "", "", "")); this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_bconfirm", global::System.Data.SqlDbType.Bit, 0, global::System.Data.ParameterDirection.Input, 0, 0, "bconfirm", global::System.Data.DataRowVersion.Original, false, null, "", "", "")); this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@IsNull_bCancel", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "bCancel", global::System.Data.DataRowVersion.Original, true, null, "", "", "")); this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_bCancel", global::System.Data.SqlDbType.Bit, 0, global::System.Data.ParameterDirection.Input, 0, 0, "bCancel", global::System.Data.DataRowVersion.Original, false, null, "", "", "")); this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@IsNull_reqUser", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "reqUser", global::System.Data.DataRowVersion.Original, true, null, "", "", "")); this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_reqUser", global::System.Data.SqlDbType.VarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "reqUser", global::System.Data.DataRowVersion.Original, false, null, "", "", "")); this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@IsNull_recvUser", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "recvUser", global::System.Data.DataRowVersion.Original, true, null, "", "", "")); this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_recvUser", global::System.Data.SqlDbType.NVarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "recvUser", global::System.Data.DataRowVersion.Original, false, null, "", "", "")); this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@IsNull_recvDate", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "recvDate", global::System.Data.DataRowVersion.Original, true, null, "", "", "")); this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_recvDate", global::System.Data.SqlDbType.VarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "recvDate", global::System.Data.DataRowVersion.Original, false, null, "", "", "")); this._adapter.InsertCommand = new global::System.Data.SqlClient.SqlCommand(); this._adapter.InsertCommand.Connection = this.Connection; this._adapter.InsertCommand.CommandText = @"INSERT INTO [ProjectsPart] ([no], [Project], [ItemGroup], [ItemModel], [ItemUnit], [ItemName], [ItemSid], [ItemSupply], [ItemSupplyidx], [ItemManu], [Item], [option1], [option2], [option3], [qty], [qtyn], [price], [priceD], [amt], [amtn], [jago], [remark], [memo], [wuid], [wdate], [import], [qtyjago], [qtybuy], [qtyin], [bbuy], [bconfirm], [bCancel], [reqUser], [recvUser], [recvDate]) VALUES (@no, @Project, @ItemGroup, @ItemModel, @ItemUnit, @ItemName, @ItemSid, @ItemSupply, @ItemSupplyidx, @ItemManu, @Item, @option1, @option2, @option3, @qty, @qtyn, @price, @priceD, @amt, @amtn, @jago, @remark, @memo, @wuid, @wdate, @import, @qtyjago, @qtybuy, @qtyin, @bbuy, @bconfirm, @bCancel, @reqUser, @recvUser, @recvDate); SELECT idx, no, Project, ItemGroup, ItemModel, ItemUnit, ItemName, ItemSid, ItemSupply, ItemSupplyidx, ItemManu, Item, option1, option2, option3, qty, qtyn, price, priceD, amt, amtn, jago, remark, memo, wuid, wdate, import, qtyjago, qtybuy, qtyin, bbuy, bconfirm, bCancel, reqUser, recvUser, recvDate FROM ProjectsPart WHERE (idx = SCOPE_IDENTITY()) ORDER BY no"; this._adapter.InsertCommand.CommandType = global::System.Data.CommandType.Text; this._adapter.InsertCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@no", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "no", global::System.Data.DataRowVersion.Current, false, null, "", "", "")); this._adapter.InsertCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Project", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "Project", global::System.Data.DataRowVersion.Current, false, null, "", "", "")); this._adapter.InsertCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@ItemGroup", global::System.Data.SqlDbType.VarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "ItemGroup", global::System.Data.DataRowVersion.Current, false, null, "", "", "")); this._adapter.InsertCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@ItemModel", global::System.Data.SqlDbType.NVarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "ItemModel", global::System.Data.DataRowVersion.Current, false, null, "", "", "")); this._adapter.InsertCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@ItemUnit", global::System.Data.SqlDbType.VarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "ItemUnit", global::System.Data.DataRowVersion.Current, false, null, "", "", "")); this._adapter.InsertCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@ItemName", global::System.Data.SqlDbType.NVarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "ItemName", global::System.Data.DataRowVersion.Current, false, null, "", "", "")); this._adapter.InsertCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@ItemSid", global::System.Data.SqlDbType.VarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "ItemSid", global::System.Data.DataRowVersion.Current, false, null, "", "", "")); this._adapter.InsertCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@ItemSupply", global::System.Data.SqlDbType.NVarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "ItemSupply", global::System.Data.DataRowVersion.Current, false, null, "", "", "")); this._adapter.InsertCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@ItemSupplyidx", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "ItemSupplyidx", global::System.Data.DataRowVersion.Current, false, null, "", "", "")); this._adapter.InsertCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@ItemManu", global::System.Data.SqlDbType.NVarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "ItemManu", global::System.Data.DataRowVersion.Current, false, null, "", "", "")); this._adapter.InsertCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Item", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "Item", global::System.Data.DataRowVersion.Current, false, null, "", "", "")); this._adapter.InsertCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@option1", global::System.Data.SqlDbType.NVarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "option1", global::System.Data.DataRowVersion.Current, false, null, "", "", "")); this._adapter.InsertCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@option2", global::System.Data.SqlDbType.NVarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "option2", global::System.Data.DataRowVersion.Current, false, null, "", "", "")); this._adapter.InsertCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@option3", global::System.Data.SqlDbType.NVarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "option3", global::System.Data.DataRowVersion.Current, false, null, "", "", "")); this._adapter.InsertCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@qty", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "qty", global::System.Data.DataRowVersion.Current, false, null, "", "", "")); this._adapter.InsertCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@qtyn", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "qtyn", global::System.Data.DataRowVersion.Current, false, null, "", "", "")); this._adapter.InsertCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@price", global::System.Data.SqlDbType.Decimal, 0, global::System.Data.ParameterDirection.Input, 18, 0, "price", global::System.Data.DataRowVersion.Current, false, null, "", "", "")); this._adapter.InsertCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@priceD", global::System.Data.SqlDbType.Decimal, 0, global::System.Data.ParameterDirection.Input, 18, 0, "priceD", global::System.Data.DataRowVersion.Current, false, null, "", "", "")); this._adapter.InsertCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@amt", global::System.Data.SqlDbType.Decimal, 0, global::System.Data.ParameterDirection.Input, 18, 0, "amt", global::System.Data.DataRowVersion.Current, false, null, "", "", "")); this._adapter.InsertCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@amtn", global::System.Data.SqlDbType.Decimal, 0, global::System.Data.ParameterDirection.Input, 18, 0, "amtn", global::System.Data.DataRowVersion.Current, false, null, "", "", "")); this._adapter.InsertCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@jago", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "jago", global::System.Data.DataRowVersion.Current, false, null, "", "", "")); this._adapter.InsertCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@remark", global::System.Data.SqlDbType.NVarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "remark", global::System.Data.DataRowVersion.Current, false, null, "", "", "")); this._adapter.InsertCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@memo", global::System.Data.SqlDbType.NVarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "memo", global::System.Data.DataRowVersion.Current, false, null, "", "", "")); this._adapter.InsertCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@wuid", global::System.Data.SqlDbType.VarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "wuid", global::System.Data.DataRowVersion.Current, false, null, "", "", "")); this._adapter.InsertCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@wdate", global::System.Data.SqlDbType.SmallDateTime, 0, global::System.Data.ParameterDirection.Input, 0, 0, "wdate", global::System.Data.DataRowVersion.Current, false, null, "", "", "")); this._adapter.InsertCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@import", global::System.Data.SqlDbType.Bit, 0, global::System.Data.ParameterDirection.Input, 0, 0, "import", global::System.Data.DataRowVersion.Current, false, null, "", "", "")); this._adapter.InsertCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@qtyjago", global::System.Data.SqlDbType.VarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "qtyjago", global::System.Data.DataRowVersion.Current, false, null, "", "", "")); this._adapter.InsertCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@qtybuy", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "qtybuy", global::System.Data.DataRowVersion.Current, false, null, "", "", "")); this._adapter.InsertCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@qtyin", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "qtyin", global::System.Data.DataRowVersion.Current, false, null, "", "", "")); this._adapter.InsertCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@bbuy", global::System.Data.SqlDbType.Bit, 0, global::System.Data.ParameterDirection.Input, 0, 0, "bbuy", global::System.Data.DataRowVersion.Current, false, null, "", "", "")); this._adapter.InsertCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@bconfirm", global::System.Data.SqlDbType.Bit, 0, global::System.Data.ParameterDirection.Input, 0, 0, "bconfirm", global::System.Data.DataRowVersion.Current, false, null, "", "", "")); this._adapter.InsertCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@bCancel", global::System.Data.SqlDbType.Bit, 0, global::System.Data.ParameterDirection.Input, 0, 0, "bCancel", global::System.Data.DataRowVersion.Current, false, null, "", "", "")); this._adapter.InsertCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@reqUser", global::System.Data.SqlDbType.VarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "reqUser", global::System.Data.DataRowVersion.Current, false, null, "", "", "")); this._adapter.InsertCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@recvUser", global::System.Data.SqlDbType.NVarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "recvUser", global::System.Data.DataRowVersion.Current, false, null, "", "", "")); this._adapter.InsertCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@recvDate", global::System.Data.SqlDbType.VarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "recvDate", global::System.Data.DataRowVersion.Current, false, null, "", "", "")); this._adapter.UpdateCommand = new global::System.Data.SqlClient.SqlCommand(); this._adapter.UpdateCommand.Connection = this.Connection; this._adapter.UpdateCommand.CommandText = "UPDATE [ProjectsPart] SET [no] = @no, [Project] = @Project, [ItemGroup] = @ItemGr" + "oup, [ItemModel] = @ItemModel, [ItemUnit] = @ItemUnit, [ItemName] = @ItemName, [" + "ItemSid] = @ItemSid, [ItemSupply] = @ItemSupply, [ItemSupplyidx] = @ItemSupplyid" + "x, [ItemManu] = @ItemManu, [Item] = @Item, [option1] = @option1, [option2] = @op" + "tion2, [option3] = @option3, [qty] = @qty, [qtyn] = @qtyn, [price] = @price, [pr" + "iceD] = @priceD, [amt] = @amt, [amtn] = @amtn, [jago] = @jago, [remark] = @remar" + "k, [memo] = @memo, [wuid] = @wuid, [wdate] = @wdate, [import] = @import, [qtyjag" + "o] = @qtyjago, [qtybuy] = @qtybuy, [qtyin] = @qtyin, [bbuy] = @bbuy, [bconfirm] " + "= @bconfirm, [bCancel] = @bCancel, [reqUser] = @reqUser, [recvUser] = @recvUser," + " [recvDate] = @recvDate WHERE (([idx] = @Original_idx) AND ((@IsNull_no = 1 AND " + "[no] IS NULL) OR ([no] = @Original_no)) AND ((@IsNull_Project = 1 AND [Project] " + "IS NULL) OR ([Project] = @Original_Project)) AND ((@IsNull_ItemGroup = 1 AND [It" + "emGroup] IS NULL) OR ([ItemGroup] = @Original_ItemGroup)) AND ((@IsNull_ItemMode" + "l = 1 AND [ItemModel] IS NULL) OR ([ItemModel] = @Original_ItemModel)) AND ((@Is" + "Null_ItemUnit = 1 AND [ItemUnit] IS NULL) OR ([ItemUnit] = @Original_ItemUnit)) " + "AND ((@IsNull_ItemName = 1 AND [ItemName] IS NULL) OR ([ItemName] = @Original_It" + "emName)) AND ((@IsNull_ItemSid = 1 AND [ItemSid] IS NULL) OR ([ItemSid] = @Origi" + "nal_ItemSid)) AND ((@IsNull_ItemSupply = 1 AND [ItemSupply] IS NULL) OR ([ItemSu" + "pply] = @Original_ItemSupply)) AND ((@IsNull_ItemSupplyidx = 1 AND [ItemSupplyid" + "x] IS NULL) OR ([ItemSupplyidx] = @Original_ItemSupplyidx)) AND ((@IsNull_ItemMa" + "nu = 1 AND [ItemManu] IS NULL) OR ([ItemManu] = @Original_ItemManu)) AND ((@IsNu" + "ll_Item = 1 AND [Item] IS NULL) OR ([Item] = @Original_Item)) AND ((@IsNull_opti" + "on1 = 1 AND [option1] IS NULL) OR ([option1] = @Original_option1)) AND ((@IsNull" + "_option2 = 1 AND [option2] IS NULL) OR ([option2] = @Original_option2)) AND ((@I" + "sNull_option3 = 1 AND [option3] IS NULL) OR ([option3] = @Original_option3)) AND" + " ((@IsNull_qty = 1 AND [qty] IS NULL) OR ([qty] = @Original_qty)) AND ((@IsNull_" + "qtyn = 1 AND [qtyn] IS NULL) OR ([qtyn] = @Original_qtyn)) AND ((@IsNull_price =" + " 1 AND [price] IS NULL) OR ([price] = @Original_price)) AND ((@IsNull_priceD = 1" + " AND [priceD] IS NULL) OR ([priceD] = @Original_priceD)) AND ((@IsNull_amt = 1 A" + "ND [amt] IS NULL) OR ([amt] = @Original_amt)) AND ((@IsNull_amtn = 1 AND [amtn] " + "IS NULL) OR ([amtn] = @Original_amtn)) AND ((@IsNull_jago = 1 AND [jago] IS NULL" + ") OR ([jago] = @Original_jago)) AND ((@IsNull_remark = 1 AND [remark] IS NULL) O" + "R ([remark] = @Original_remark)) AND ((@IsNull_memo = 1 AND [memo] IS NULL) OR (" + "[memo] = @Original_memo)) AND ([wuid] = @Original_wuid) AND ([wdate] = @Original" + "_wdate) AND ((@IsNull_import = 1 AND [import] IS NULL) OR ([import] = @Original_" + "import)) AND ((@IsNull_qtyjago = 1 AND [qtyjago] IS NULL) OR ([qtyjago] = @Origi" + "nal_qtyjago)) AND ((@IsNull_qtybuy = 1 AND [qtybuy] IS NULL) OR ([qtybuy] = @Ori" + "ginal_qtybuy)) AND ((@IsNull_qtyin = 1 AND [qtyin] IS NULL) OR ([qtyin] = @Origi" + "nal_qtyin)) AND ((@IsNull_bbuy = 1 AND [bbuy] IS NULL) OR ([bbuy] = @Original_bb" + "uy)) AND ((@IsNull_bconfirm = 1 AND [bconfirm] IS NULL) OR ([bconfirm] = @Origin" + "al_bconfirm)) AND ((@IsNull_bCancel = 1 AND [bCancel] IS NULL) OR ([bCancel] = @" + "Original_bCancel)) AND ((@IsNull_reqUser = 1 AND [reqUser] IS NULL) OR ([reqUser" + "] = @Original_reqUser)) AND ((@IsNull_recvUser = 1 AND [recvUser] IS NULL) OR ([" + "recvUser] = @Original_recvUser)) AND ((@IsNull_recvDate = 1 AND [recvDate] IS NU" + "LL) OR ([recvDate] = @Original_recvDate)));\r\nSELECT idx, no, Project, ItemGroup," + " ItemModel, ItemUnit, ItemName, ItemSid, ItemSupply, ItemSupplyidx, ItemManu, It" + "em, option1, option2, option3, qty, qtyn, price, priceD, amt, amtn, jago, remark" + ", memo, wuid, wdate, import, qtyjago, qtybuy, qtyin, bbuy, bconfirm, bCancel, re" + "qUser, recvUser, recvDate FROM ProjectsPart WHERE (idx = @idx) ORDER BY no"; this._adapter.UpdateCommand.CommandType = global::System.Data.CommandType.Text; this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@no", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "no", global::System.Data.DataRowVersion.Current, false, null, "", "", "")); this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Project", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "Project", global::System.Data.DataRowVersion.Current, false, null, "", "", "")); this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@ItemGroup", global::System.Data.SqlDbType.VarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "ItemGroup", global::System.Data.DataRowVersion.Current, false, null, "", "", "")); this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@ItemModel", global::System.Data.SqlDbType.NVarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "ItemModel", global::System.Data.DataRowVersion.Current, false, null, "", "", "")); this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@ItemUnit", global::System.Data.SqlDbType.VarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "ItemUnit", global::System.Data.DataRowVersion.Current, false, null, "", "", "")); this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@ItemName", global::System.Data.SqlDbType.NVarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "ItemName", global::System.Data.DataRowVersion.Current, false, null, "", "", "")); this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@ItemSid", global::System.Data.SqlDbType.VarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "ItemSid", global::System.Data.DataRowVersion.Current, false, null, "", "", "")); this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@ItemSupply", global::System.Data.SqlDbType.NVarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "ItemSupply", global::System.Data.DataRowVersion.Current, false, null, "", "", "")); this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@ItemSupplyidx", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "ItemSupplyidx", global::System.Data.DataRowVersion.Current, false, null, "", "", "")); this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@ItemManu", global::System.Data.SqlDbType.NVarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "ItemManu", global::System.Data.DataRowVersion.Current, false, null, "", "", "")); this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Item", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "Item", global::System.Data.DataRowVersion.Current, false, null, "", "", "")); this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@option1", global::System.Data.SqlDbType.NVarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "option1", global::System.Data.DataRowVersion.Current, false, null, "", "", "")); this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@option2", global::System.Data.SqlDbType.NVarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "option2", global::System.Data.DataRowVersion.Current, false, null, "", "", "")); this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@option3", global::System.Data.SqlDbType.NVarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "option3", global::System.Data.DataRowVersion.Current, false, null, "", "", "")); this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@qty", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "qty", global::System.Data.DataRowVersion.Current, false, null, "", "", "")); this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@qtyn", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "qtyn", global::System.Data.DataRowVersion.Current, false, null, "", "", "")); this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@price", global::System.Data.SqlDbType.Decimal, 0, global::System.Data.ParameterDirection.Input, 18, 0, "price", global::System.Data.DataRowVersion.Current, false, null, "", "", "")); this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@priceD", global::System.Data.SqlDbType.Decimal, 0, global::System.Data.ParameterDirection.Input, 18, 0, "priceD", global::System.Data.DataRowVersion.Current, false, null, "", "", "")); this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@amt", global::System.Data.SqlDbType.Decimal, 0, global::System.Data.ParameterDirection.Input, 18, 0, "amt", global::System.Data.DataRowVersion.Current, false, null, "", "", "")); this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@amtn", global::System.Data.SqlDbType.Decimal, 0, global::System.Data.ParameterDirection.Input, 18, 0, "amtn", global::System.Data.DataRowVersion.Current, false, null, "", "", "")); this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@jago", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "jago", global::System.Data.DataRowVersion.Current, false, null, "", "", "")); this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@remark", global::System.Data.SqlDbType.NVarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "remark", global::System.Data.DataRowVersion.Current, false, null, "", "", "")); this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@memo", global::System.Data.SqlDbType.NVarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "memo", global::System.Data.DataRowVersion.Current, false, null, "", "", "")); this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@wuid", global::System.Data.SqlDbType.VarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "wuid", global::System.Data.DataRowVersion.Current, false, null, "", "", "")); this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@wdate", global::System.Data.SqlDbType.SmallDateTime, 0, global::System.Data.ParameterDirection.Input, 0, 0, "wdate", global::System.Data.DataRowVersion.Current, false, null, "", "", "")); this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@import", global::System.Data.SqlDbType.Bit, 0, global::System.Data.ParameterDirection.Input, 0, 0, "import", global::System.Data.DataRowVersion.Current, false, null, "", "", "")); this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@qtyjago", global::System.Data.SqlDbType.VarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "qtyjago", global::System.Data.DataRowVersion.Current, false, null, "", "", "")); this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@qtybuy", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "qtybuy", global::System.Data.DataRowVersion.Current, false, null, "", "", "")); this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@qtyin", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "qtyin", global::System.Data.DataRowVersion.Current, false, null, "", "", "")); this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@bbuy", global::System.Data.SqlDbType.Bit, 0, global::System.Data.ParameterDirection.Input, 0, 0, "bbuy", global::System.Data.DataRowVersion.Current, false, null, "", "", "")); this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@bconfirm", global::System.Data.SqlDbType.Bit, 0, global::System.Data.ParameterDirection.Input, 0, 0, "bconfirm", global::System.Data.DataRowVersion.Current, false, null, "", "", "")); this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@bCancel", global::System.Data.SqlDbType.Bit, 0, global::System.Data.ParameterDirection.Input, 0, 0, "bCancel", global::System.Data.DataRowVersion.Current, false, null, "", "", "")); this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@reqUser", global::System.Data.SqlDbType.VarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "reqUser", global::System.Data.DataRowVersion.Current, false, null, "", "", "")); this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@recvUser", global::System.Data.SqlDbType.NVarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "recvUser", global::System.Data.DataRowVersion.Current, false, null, "", "", "")); this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@recvDate", global::System.Data.SqlDbType.VarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "recvDate", global::System.Data.DataRowVersion.Current, false, null, "", "", "")); this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_idx", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "idx", global::System.Data.DataRowVersion.Original, false, null, "", "", "")); this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@IsNull_no", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "no", global::System.Data.DataRowVersion.Original, true, null, "", "", "")); this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_no", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "no", global::System.Data.DataRowVersion.Original, false, null, "", "", "")); this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@IsNull_Project", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "Project", global::System.Data.DataRowVersion.Original, true, null, "", "", "")); this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_Project", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "Project", global::System.Data.DataRowVersion.Original, false, null, "", "", "")); this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@IsNull_ItemGroup", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "ItemGroup", global::System.Data.DataRowVersion.Original, true, null, "", "", "")); this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_ItemGroup", global::System.Data.SqlDbType.VarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "ItemGroup", global::System.Data.DataRowVersion.Original, false, null, "", "", "")); this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@IsNull_ItemModel", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "ItemModel", global::System.Data.DataRowVersion.Original, true, null, "", "", "")); this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_ItemModel", global::System.Data.SqlDbType.NVarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "ItemModel", global::System.Data.DataRowVersion.Original, false, null, "", "", "")); this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@IsNull_ItemUnit", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "ItemUnit", global::System.Data.DataRowVersion.Original, true, null, "", "", "")); this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_ItemUnit", global::System.Data.SqlDbType.VarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "ItemUnit", global::System.Data.DataRowVersion.Original, false, null, "", "", "")); this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@IsNull_ItemName", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "ItemName", global::System.Data.DataRowVersion.Original, true, null, "", "", "")); this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_ItemName", global::System.Data.SqlDbType.NVarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "ItemName", global::System.Data.DataRowVersion.Original, false, null, "", "", "")); this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@IsNull_ItemSid", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "ItemSid", global::System.Data.DataRowVersion.Original, true, null, "", "", "")); this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_ItemSid", global::System.Data.SqlDbType.VarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "ItemSid", global::System.Data.DataRowVersion.Original, false, null, "", "", "")); this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@IsNull_ItemSupply", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "ItemSupply", global::System.Data.DataRowVersion.Original, true, null, "", "", "")); this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_ItemSupply", global::System.Data.SqlDbType.NVarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "ItemSupply", global::System.Data.DataRowVersion.Original, false, null, "", "", "")); this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@IsNull_ItemSupplyidx", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "ItemSupplyidx", global::System.Data.DataRowVersion.Original, true, null, "", "", "")); this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_ItemSupplyidx", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "ItemSupplyidx", global::System.Data.DataRowVersion.Original, false, null, "", "", "")); this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@IsNull_ItemManu", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "ItemManu", global::System.Data.DataRowVersion.Original, true, null, "", "", "")); this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_ItemManu", global::System.Data.SqlDbType.NVarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "ItemManu", global::System.Data.DataRowVersion.Original, false, null, "", "", "")); this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@IsNull_Item", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "Item", global::System.Data.DataRowVersion.Original, true, null, "", "", "")); this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_Item", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "Item", global::System.Data.DataRowVersion.Original, false, null, "", "", "")); this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@IsNull_option1", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "option1", global::System.Data.DataRowVersion.Original, true, null, "", "", "")); this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_option1", global::System.Data.SqlDbType.NVarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "option1", global::System.Data.DataRowVersion.Original, false, null, "", "", "")); this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@IsNull_option2", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "option2", global::System.Data.DataRowVersion.Original, true, null, "", "", "")); this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_option2", global::System.Data.SqlDbType.NVarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "option2", global::System.Data.DataRowVersion.Original, false, null, "", "", "")); this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@IsNull_option3", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "option3", global::System.Data.DataRowVersion.Original, true, null, "", "", "")); this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_option3", global::System.Data.SqlDbType.NVarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "option3", global::System.Data.DataRowVersion.Original, false, null, "", "", "")); this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@IsNull_qty", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "qty", global::System.Data.DataRowVersion.Original, true, null, "", "", "")); this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_qty", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "qty", global::System.Data.DataRowVersion.Original, false, null, "", "", "")); this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@IsNull_qtyn", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "qtyn", global::System.Data.DataRowVersion.Original, true, null, "", "", "")); this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_qtyn", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "qtyn", global::System.Data.DataRowVersion.Original, false, null, "", "", "")); this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@IsNull_price", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "price", global::System.Data.DataRowVersion.Original, true, null, "", "", "")); this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_price", global::System.Data.SqlDbType.Decimal, 0, global::System.Data.ParameterDirection.Input, 18, 0, "price", global::System.Data.DataRowVersion.Original, false, null, "", "", "")); this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@IsNull_priceD", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "priceD", global::System.Data.DataRowVersion.Original, true, null, "", "", "")); this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_priceD", global::System.Data.SqlDbType.Decimal, 0, global::System.Data.ParameterDirection.Input, 18, 0, "priceD", global::System.Data.DataRowVersion.Original, false, null, "", "", "")); this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@IsNull_amt", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "amt", global::System.Data.DataRowVersion.Original, true, null, "", "", "")); this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_amt", global::System.Data.SqlDbType.Decimal, 0, global::System.Data.ParameterDirection.Input, 18, 0, "amt", global::System.Data.DataRowVersion.Original, false, null, "", "", "")); this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@IsNull_amtn", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "amtn", global::System.Data.DataRowVersion.Original, true, null, "", "", "")); this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_amtn", global::System.Data.SqlDbType.Decimal, 0, global::System.Data.ParameterDirection.Input, 18, 0, "amtn", global::System.Data.DataRowVersion.Original, false, null, "", "", "")); this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@IsNull_jago", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "jago", global::System.Data.DataRowVersion.Original, true, null, "", "", "")); this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_jago", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "jago", global::System.Data.DataRowVersion.Original, false, null, "", "", "")); this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@IsNull_remark", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "remark", global::System.Data.DataRowVersion.Original, true, null, "", "", "")); this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_remark", global::System.Data.SqlDbType.NVarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "remark", global::System.Data.DataRowVersion.Original, false, null, "", "", "")); this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@IsNull_memo", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "memo", global::System.Data.DataRowVersion.Original, true, null, "", "", "")); this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_memo", global::System.Data.SqlDbType.NVarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "memo", global::System.Data.DataRowVersion.Original, false, null, "", "", "")); this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_wuid", global::System.Data.SqlDbType.VarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "wuid", global::System.Data.DataRowVersion.Original, false, null, "", "", "")); this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_wdate", global::System.Data.SqlDbType.SmallDateTime, 0, global::System.Data.ParameterDirection.Input, 0, 0, "wdate", global::System.Data.DataRowVersion.Original, false, null, "", "", "")); this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@IsNull_import", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "import", global::System.Data.DataRowVersion.Original, true, null, "", "", "")); this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_import", global::System.Data.SqlDbType.Bit, 0, global::System.Data.ParameterDirection.Input, 0, 0, "import", global::System.Data.DataRowVersion.Original, false, null, "", "", "")); this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@IsNull_qtyjago", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "qtyjago", global::System.Data.DataRowVersion.Original, true, null, "", "", "")); this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_qtyjago", global::System.Data.SqlDbType.VarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "qtyjago", global::System.Data.DataRowVersion.Original, false, null, "", "", "")); this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@IsNull_qtybuy", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "qtybuy", global::System.Data.DataRowVersion.Original, true, null, "", "", "")); this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_qtybuy", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "qtybuy", global::System.Data.DataRowVersion.Original, false, null, "", "", "")); this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@IsNull_qtyin", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "qtyin", global::System.Data.DataRowVersion.Original, true, null, "", "", "")); this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_qtyin", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "qtyin", global::System.Data.DataRowVersion.Original, false, null, "", "", "")); this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@IsNull_bbuy", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "bbuy", global::System.Data.DataRowVersion.Original, true, null, "", "", "")); this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_bbuy", global::System.Data.SqlDbType.Bit, 0, global::System.Data.ParameterDirection.Input, 0, 0, "bbuy", global::System.Data.DataRowVersion.Original, false, null, "", "", "")); this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@IsNull_bconfirm", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "bconfirm", global::System.Data.DataRowVersion.Original, true, null, "", "", "")); this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_bconfirm", global::System.Data.SqlDbType.Bit, 0, global::System.Data.ParameterDirection.Input, 0, 0, "bconfirm", global::System.Data.DataRowVersion.Original, false, null, "", "", "")); this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@IsNull_bCancel", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "bCancel", global::System.Data.DataRowVersion.Original, true, null, "", "", "")); this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_bCancel", global::System.Data.SqlDbType.Bit, 0, global::System.Data.ParameterDirection.Input, 0, 0, "bCancel", global::System.Data.DataRowVersion.Original, false, null, "", "", "")); this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@IsNull_reqUser", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "reqUser", global::System.Data.DataRowVersion.Original, true, null, "", "", "")); this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_reqUser", global::System.Data.SqlDbType.VarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "reqUser", global::System.Data.DataRowVersion.Original, false, null, "", "", "")); this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@IsNull_recvUser", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "recvUser", global::System.Data.DataRowVersion.Original, true, null, "", "", "")); this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_recvUser", global::System.Data.SqlDbType.NVarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "recvUser", global::System.Data.DataRowVersion.Original, false, null, "", "", "")); this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@IsNull_recvDate", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "recvDate", global::System.Data.DataRowVersion.Original, true, null, "", "", "")); this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_recvDate", global::System.Data.SqlDbType.VarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "recvDate", global::System.Data.DataRowVersion.Original, false, null, "", "", "")); this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@idx", global::System.Data.SqlDbType.Int, 4, global::System.Data.ParameterDirection.Input, 0, 0, "idx", global::System.Data.DataRowVersion.Current, false, null, "", "", "")); } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] private void InitConnection() { this._connection = new global::System.Data.SqlClient.SqlConnection(); this._connection.ConnectionString = global::Project.Properties.Settings.Default.gwcs; } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] private void InitCommandCollection() { this._commandCollection = new global::System.Data.SqlClient.SqlCommand[1]; this._commandCollection[0] = new global::System.Data.SqlClient.SqlCommand(); this._commandCollection[0].Connection = this.Connection; this._commandCollection[0].CommandText = @"SELECT idx, no, Project, ItemGroup, ItemModel, ItemUnit, ItemName, ItemSid, ItemSupply, ItemSupplyidx, ItemManu, Item, option1, option2, option3, qty, qtyn, price, priceD, amt, amtn, jago, remark, memo, wuid, wdate, import, qtyjago, qtybuy, qtyin, bbuy, bconfirm, bCancel, reqUser, recvUser, recvDate FROM ProjectsPart WITH (nolock) WHERE (idx = @projectidx) ORDER BY no"; this._commandCollection[0].CommandType = global::System.Data.CommandType.Text; this._commandCollection[0].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@projectidx", global::System.Data.SqlDbType.Int, 4, global::System.Data.ParameterDirection.Input, 0, 0, "idx", global::System.Data.DataRowVersion.Current, false, null, "", "", "")); } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")] [global::System.ComponentModel.DataObjectMethodAttribute(global::System.ComponentModel.DataObjectMethodType.Fill, true)] public virtual int Fill(dsProjects.ProjectsPartDataTable dataTable, int projectidx) { this.Adapter.SelectCommand = this.CommandCollection[0]; this.Adapter.SelectCommand.Parameters[0].Value = ((int)(projectidx)); if ((this.ClearBeforeFill == true)) { dataTable.Clear(); } int returnValue = this.Adapter.Fill(dataTable); return returnValue; } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")] [global::System.ComponentModel.DataObjectMethodAttribute(global::System.ComponentModel.DataObjectMethodType.Select, true)] public virtual dsProjects.ProjectsPartDataTable GetData(int projectidx) { this.Adapter.SelectCommand = this.CommandCollection[0]; this.Adapter.SelectCommand.Parameters[0].Value = ((int)(projectidx)); dsProjects.ProjectsPartDataTable dataTable = new dsProjects.ProjectsPartDataTable(); this.Adapter.Fill(dataTable); return dataTable; } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")] public virtual int Update(dsProjects.ProjectsPartDataTable dataTable) { return this.Adapter.Update(dataTable); } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")] public virtual int Update(dsProjects dataSet) { return this.Adapter.Update(dataSet, "ProjectsPart"); } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")] public virtual int Update(global::System.Data.DataRow dataRow) { return this.Adapter.Update(new global::System.Data.DataRow[] { dataRow}); } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")] public virtual int Update(global::System.Data.DataRow[] dataRows) { return this.Adapter.Update(dataRows); } } /// ///TableAdapterManager is used to coordinate TableAdapters in the dataset to enable Hierarchical Update scenarios /// [global::System.ComponentModel.DesignerCategoryAttribute("code")] [global::System.ComponentModel.ToolboxItem(true)] [global::System.ComponentModel.DesignerAttribute("Microsoft.VSDesigner.DataSource.Design.TableAdapterManagerDesigner, Microsoft.VSD" + "esigner, Version=10.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a")] [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapterManager")] public partial class TableAdapterManager : global::System.ComponentModel.Component { private UpdateOrderOption _updateOrder; private ProjectsTableAdapter _projectsTableAdapter; private EETGW_ProjectsScheduleTableAdapter _eETGW_ProjectsScheduleTableAdapter; private ProjectsPartTableAdapter _projectsPartTableAdapter; private bool _backupDataSetBeforeUpdate; private global::System.Data.IDbConnection _connection; [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public UpdateOrderOption UpdateOrder { get { return this._updateOrder; } set { this._updateOrder = value; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] [global::System.ComponentModel.EditorAttribute("Microsoft.VSDesigner.DataSource.Design.TableAdapterManagerPropertyEditor, Microso" + "ft.VSDesigner, Version=10.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3" + "a", "System.Drawing.Design.UITypeEditor")] public ProjectsTableAdapter ProjectsTableAdapter { get { return this._projectsTableAdapter; } set { this._projectsTableAdapter = value; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] [global::System.ComponentModel.EditorAttribute("Microsoft.VSDesigner.DataSource.Design.TableAdapterManagerPropertyEditor, Microso" + "ft.VSDesigner, Version=10.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3" + "a", "System.Drawing.Design.UITypeEditor")] public EETGW_ProjectsScheduleTableAdapter EETGW_ProjectsScheduleTableAdapter { get { return this._eETGW_ProjectsScheduleTableAdapter; } set { this._eETGW_ProjectsScheduleTableAdapter = value; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] [global::System.ComponentModel.EditorAttribute("Microsoft.VSDesigner.DataSource.Design.TableAdapterManagerPropertyEditor, Microso" + "ft.VSDesigner, Version=10.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3" + "a", "System.Drawing.Design.UITypeEditor")] public ProjectsPartTableAdapter ProjectsPartTableAdapter { get { return this._projectsPartTableAdapter; } set { this._projectsPartTableAdapter = value; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public bool BackupDataSetBeforeUpdate { get { return this._backupDataSetBeforeUpdate; } set { this._backupDataSetBeforeUpdate = value; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] [global::System.ComponentModel.Browsable(false)] public global::System.Data.IDbConnection Connection { get { if ((this._connection != null)) { return this._connection; } if (((this._projectsTableAdapter != null) && (this._projectsTableAdapter.Connection != null))) { return this._projectsTableAdapter.Connection; } if (((this._eETGW_ProjectsScheduleTableAdapter != null) && (this._eETGW_ProjectsScheduleTableAdapter.Connection != null))) { return this._eETGW_ProjectsScheduleTableAdapter.Connection; } if (((this._projectsPartTableAdapter != null) && (this._projectsPartTableAdapter.Connection != null))) { return this._projectsPartTableAdapter.Connection; } return null; } set { this._connection = value; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] [global::System.ComponentModel.Browsable(false)] public int TableAdapterInstanceCount { get { int count = 0; if ((this._projectsTableAdapter != null)) { count = (count + 1); } if ((this._eETGW_ProjectsScheduleTableAdapter != null)) { count = (count + 1); } if ((this._projectsPartTableAdapter != null)) { count = (count + 1); } return count; } } /// ///Update rows in top-down order. /// [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] private int UpdateUpdatedRows(dsProjects dataSet, global::System.Collections.Generic.List allChangedRows, global::System.Collections.Generic.List allAddedRows) { int result = 0; if ((this._projectsTableAdapter != null)) { global::System.Data.DataRow[] updatedRows = dataSet.Projects.Select(null, null, global::System.Data.DataViewRowState.ModifiedCurrent); updatedRows = this.GetRealUpdatedRows(updatedRows, allAddedRows); if (((updatedRows != null) && (0 < updatedRows.Length))) { result = (result + this._projectsTableAdapter.Update(updatedRows)); allChangedRows.AddRange(updatedRows); } } if ((this._eETGW_ProjectsScheduleTableAdapter != null)) { global::System.Data.DataRow[] updatedRows = dataSet.EETGW_ProjectsSchedule.Select(null, null, global::System.Data.DataViewRowState.ModifiedCurrent); updatedRows = this.GetRealUpdatedRows(updatedRows, allAddedRows); if (((updatedRows != null) && (0 < updatedRows.Length))) { result = (result + this._eETGW_ProjectsScheduleTableAdapter.Update(updatedRows)); allChangedRows.AddRange(updatedRows); } } if ((this._projectsPartTableAdapter != null)) { global::System.Data.DataRow[] updatedRows = dataSet.ProjectsPart.Select(null, null, global::System.Data.DataViewRowState.ModifiedCurrent); updatedRows = this.GetRealUpdatedRows(updatedRows, allAddedRows); if (((updatedRows != null) && (0 < updatedRows.Length))) { result = (result + this._projectsPartTableAdapter.Update(updatedRows)); allChangedRows.AddRange(updatedRows); } } return result; } /// ///Insert rows in top-down order. /// [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] private int UpdateInsertedRows(dsProjects dataSet, global::System.Collections.Generic.List allAddedRows) { int result = 0; if ((this._projectsTableAdapter != null)) { global::System.Data.DataRow[] addedRows = dataSet.Projects.Select(null, null, global::System.Data.DataViewRowState.Added); if (((addedRows != null) && (0 < addedRows.Length))) { result = (result + this._projectsTableAdapter.Update(addedRows)); allAddedRows.AddRange(addedRows); } } if ((this._eETGW_ProjectsScheduleTableAdapter != null)) { global::System.Data.DataRow[] addedRows = dataSet.EETGW_ProjectsSchedule.Select(null, null, global::System.Data.DataViewRowState.Added); if (((addedRows != null) && (0 < addedRows.Length))) { result = (result + this._eETGW_ProjectsScheduleTableAdapter.Update(addedRows)); allAddedRows.AddRange(addedRows); } } if ((this._projectsPartTableAdapter != null)) { global::System.Data.DataRow[] addedRows = dataSet.ProjectsPart.Select(null, null, global::System.Data.DataViewRowState.Added); if (((addedRows != null) && (0 < addedRows.Length))) { result = (result + this._projectsPartTableAdapter.Update(addedRows)); allAddedRows.AddRange(addedRows); } } return result; } /// ///Delete rows in bottom-up order. /// [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] private int UpdateDeletedRows(dsProjects dataSet, global::System.Collections.Generic.List allChangedRows) { int result = 0; if ((this._projectsPartTableAdapter != null)) { global::System.Data.DataRow[] deletedRows = dataSet.ProjectsPart.Select(null, null, global::System.Data.DataViewRowState.Deleted); if (((deletedRows != null) && (0 < deletedRows.Length))) { result = (result + this._projectsPartTableAdapter.Update(deletedRows)); allChangedRows.AddRange(deletedRows); } } if ((this._eETGW_ProjectsScheduleTableAdapter != null)) { global::System.Data.DataRow[] deletedRows = dataSet.EETGW_ProjectsSchedule.Select(null, null, global::System.Data.DataViewRowState.Deleted); if (((deletedRows != null) && (0 < deletedRows.Length))) { result = (result + this._eETGW_ProjectsScheduleTableAdapter.Update(deletedRows)); allChangedRows.AddRange(deletedRows); } } if ((this._projectsTableAdapter != null)) { global::System.Data.DataRow[] deletedRows = dataSet.Projects.Select(null, null, global::System.Data.DataViewRowState.Deleted); if (((deletedRows != null) && (0 < deletedRows.Length))) { result = (result + this._projectsTableAdapter.Update(deletedRows)); allChangedRows.AddRange(deletedRows); } } return result; } /// ///Remove inserted rows that become updated rows after calling TableAdapter.Update(inserted rows) first /// [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] private global::System.Data.DataRow[] GetRealUpdatedRows(global::System.Data.DataRow[] updatedRows, global::System.Collections.Generic.List allAddedRows) { if (((updatedRows == null) || (updatedRows.Length < 1))) { return updatedRows; } if (((allAddedRows == null) || (allAddedRows.Count < 1))) { return updatedRows; } global::System.Collections.Generic.List realUpdatedRows = new global::System.Collections.Generic.List(); for (int i = 0; (i < updatedRows.Length); i = (i + 1)) { global::System.Data.DataRow row = updatedRows[i]; if ((allAddedRows.Contains(row) == false)) { realUpdatedRows.Add(row); } } return realUpdatedRows.ToArray(); } /// ///Update all changes to the dataset. /// [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public virtual int UpdateAll(dsProjects dataSet) { if ((dataSet == null)) { throw new global::System.ArgumentNullException("dataSet"); } if ((dataSet.HasChanges() == false)) { return 0; } if (((this._projectsTableAdapter != null) && (this.MatchTableAdapterConnection(this._projectsTableAdapter.Connection) == false))) { throw new global::System.ArgumentException("TableAdapterManager에서 관리하는 모든 TableAdapter에는 동일한 연결 문자열을 사용해야 합니다."); } if (((this._eETGW_ProjectsScheduleTableAdapter != null) && (this.MatchTableAdapterConnection(this._eETGW_ProjectsScheduleTableAdapter.Connection) == false))) { throw new global::System.ArgumentException("TableAdapterManager에서 관리하는 모든 TableAdapter에는 동일한 연결 문자열을 사용해야 합니다."); } if (((this._projectsPartTableAdapter != null) && (this.MatchTableAdapterConnection(this._projectsPartTableAdapter.Connection) == false))) { throw new global::System.ArgumentException("TableAdapterManager에서 관리하는 모든 TableAdapter에는 동일한 연결 문자열을 사용해야 합니다."); } global::System.Data.IDbConnection workConnection = this.Connection; if ((workConnection == null)) { throw new global::System.ApplicationException("TableAdapterManager에 연결 정보가 없습니다. 각 TableAdapterManager TableAdapter 속성을 올바른 Tabl" + "eAdapter 인스턴스로 설정하십시오."); } bool workConnOpened = false; if (((workConnection.State & global::System.Data.ConnectionState.Broken) == global::System.Data.ConnectionState.Broken)) { workConnection.Close(); } if ((workConnection.State == global::System.Data.ConnectionState.Closed)) { workConnection.Open(); workConnOpened = true; } global::System.Data.IDbTransaction workTransaction = workConnection.BeginTransaction(); if ((workTransaction == null)) { throw new global::System.ApplicationException("트랜잭션을 시작할 수 없습니다. 현재 데이터 연결에서 트랜잭션이 지원되지 않거나 현재 상태에서 트랜잭션을 시작할 수 없습니다."); } global::System.Collections.Generic.List allChangedRows = new global::System.Collections.Generic.List(); global::System.Collections.Generic.List allAddedRows = new global::System.Collections.Generic.List(); global::System.Collections.Generic.List adaptersWithAcceptChangesDuringUpdate = new global::System.Collections.Generic.List(); global::System.Collections.Generic.Dictionary revertConnections = new global::System.Collections.Generic.Dictionary(); int result = 0; global::System.Data.DataSet backupDataSet = null; if (this.BackupDataSetBeforeUpdate) { backupDataSet = new global::System.Data.DataSet(); backupDataSet.Merge(dataSet); } try { // ---- Prepare for update ----------- // if ((this._projectsTableAdapter != null)) { revertConnections.Add(this._projectsTableAdapter, this._projectsTableAdapter.Connection); this._projectsTableAdapter.Connection = ((global::System.Data.SqlClient.SqlConnection)(workConnection)); this._projectsTableAdapter.Transaction = ((global::System.Data.SqlClient.SqlTransaction)(workTransaction)); if (this._projectsTableAdapter.Adapter.AcceptChangesDuringUpdate) { this._projectsTableAdapter.Adapter.AcceptChangesDuringUpdate = false; adaptersWithAcceptChangesDuringUpdate.Add(this._projectsTableAdapter.Adapter); } } if ((this._eETGW_ProjectsScheduleTableAdapter != null)) { revertConnections.Add(this._eETGW_ProjectsScheduleTableAdapter, this._eETGW_ProjectsScheduleTableAdapter.Connection); this._eETGW_ProjectsScheduleTableAdapter.Connection = ((global::System.Data.SqlClient.SqlConnection)(workConnection)); this._eETGW_ProjectsScheduleTableAdapter.Transaction = ((global::System.Data.SqlClient.SqlTransaction)(workTransaction)); if (this._eETGW_ProjectsScheduleTableAdapter.Adapter.AcceptChangesDuringUpdate) { this._eETGW_ProjectsScheduleTableAdapter.Adapter.AcceptChangesDuringUpdate = false; adaptersWithAcceptChangesDuringUpdate.Add(this._eETGW_ProjectsScheduleTableAdapter.Adapter); } } if ((this._projectsPartTableAdapter != null)) { revertConnections.Add(this._projectsPartTableAdapter, this._projectsPartTableAdapter.Connection); this._projectsPartTableAdapter.Connection = ((global::System.Data.SqlClient.SqlConnection)(workConnection)); this._projectsPartTableAdapter.Transaction = ((global::System.Data.SqlClient.SqlTransaction)(workTransaction)); if (this._projectsPartTableAdapter.Adapter.AcceptChangesDuringUpdate) { this._projectsPartTableAdapter.Adapter.AcceptChangesDuringUpdate = false; adaptersWithAcceptChangesDuringUpdate.Add(this._projectsPartTableAdapter.Adapter); } } // //---- Perform updates ----------- // if ((this.UpdateOrder == UpdateOrderOption.UpdateInsertDelete)) { result = (result + this.UpdateUpdatedRows(dataSet, allChangedRows, allAddedRows)); result = (result + this.UpdateInsertedRows(dataSet, allAddedRows)); } else { result = (result + this.UpdateInsertedRows(dataSet, allAddedRows)); result = (result + this.UpdateUpdatedRows(dataSet, allChangedRows, allAddedRows)); } result = (result + this.UpdateDeletedRows(dataSet, allChangedRows)); // //---- Commit updates ----------- // workTransaction.Commit(); if ((0 < allAddedRows.Count)) { global::System.Data.DataRow[] rows = new System.Data.DataRow[allAddedRows.Count]; allAddedRows.CopyTo(rows); for (int i = 0; (i < rows.Length); i = (i + 1)) { global::System.Data.DataRow row = rows[i]; row.AcceptChanges(); } } if ((0 < allChangedRows.Count)) { global::System.Data.DataRow[] rows = new System.Data.DataRow[allChangedRows.Count]; allChangedRows.CopyTo(rows); for (int i = 0; (i < rows.Length); i = (i + 1)) { global::System.Data.DataRow row = rows[i]; row.AcceptChanges(); } } } catch (global::System.Exception ex) { workTransaction.Rollback(); // ---- Restore the dataset ----------- if (this.BackupDataSetBeforeUpdate) { global::System.Diagnostics.Debug.Assert((backupDataSet != null)); dataSet.Clear(); dataSet.Merge(backupDataSet); } else { if ((0 < allAddedRows.Count)) { global::System.Data.DataRow[] rows = new System.Data.DataRow[allAddedRows.Count]; allAddedRows.CopyTo(rows); for (int i = 0; (i < rows.Length); i = (i + 1)) { global::System.Data.DataRow row = rows[i]; row.AcceptChanges(); row.SetAdded(); } } } throw ex; } finally { if (workConnOpened) { workConnection.Close(); } if ((this._projectsTableAdapter != null)) { this._projectsTableAdapter.Connection = ((global::System.Data.SqlClient.SqlConnection)(revertConnections[this._projectsTableAdapter])); this._projectsTableAdapter.Transaction = null; } if ((this._eETGW_ProjectsScheduleTableAdapter != null)) { this._eETGW_ProjectsScheduleTableAdapter.Connection = ((global::System.Data.SqlClient.SqlConnection)(revertConnections[this._eETGW_ProjectsScheduleTableAdapter])); this._eETGW_ProjectsScheduleTableAdapter.Transaction = null; } if ((this._projectsPartTableAdapter != null)) { this._projectsPartTableAdapter.Connection = ((global::System.Data.SqlClient.SqlConnection)(revertConnections[this._projectsPartTableAdapter])); this._projectsPartTableAdapter.Transaction = null; } if ((0 < adaptersWithAcceptChangesDuringUpdate.Count)) { global::System.Data.Common.DataAdapter[] adapters = new System.Data.Common.DataAdapter[adaptersWithAcceptChangesDuringUpdate.Count]; adaptersWithAcceptChangesDuringUpdate.CopyTo(adapters); for (int i = 0; (i < adapters.Length); i = (i + 1)) { global::System.Data.Common.DataAdapter adapter = adapters[i]; adapter.AcceptChangesDuringUpdate = true; } } } return result; } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] protected virtual void SortSelfReferenceRows(global::System.Data.DataRow[] rows, global::System.Data.DataRelation relation, bool childFirst) { global::System.Array.Sort(rows, new SelfReferenceComparer(relation, childFirst)); } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] protected virtual bool MatchTableAdapterConnection(global::System.Data.IDbConnection inputConnection) { if ((this._connection != null)) { return true; } if (((this.Connection == null) || (inputConnection == null))) { return true; } if (string.Equals(this.Connection.ConnectionString, inputConnection.ConnectionString, global::System.StringComparison.Ordinal)) { return true; } return false; } /// ///Update Order Option /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public enum UpdateOrderOption { InsertUpdateDelete = 0, UpdateInsertDelete = 1, } /// ///Used to sort self-referenced table's rows /// [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] private class SelfReferenceComparer : object, global::System.Collections.Generic.IComparer { private global::System.Data.DataRelation _relation; private int _childFirst; [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] internal SelfReferenceComparer(global::System.Data.DataRelation relation, bool childFirst) { this._relation = relation; if (childFirst) { this._childFirst = -1; } else { this._childFirst = 1; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] private global::System.Data.DataRow GetRoot(global::System.Data.DataRow row, out int distance) { global::System.Diagnostics.Debug.Assert((row != null)); global::System.Data.DataRow root = row; distance = 0; global::System.Collections.Generic.IDictionary traversedRows = new global::System.Collections.Generic.Dictionary(); traversedRows[row] = row; global::System.Data.DataRow parent = row.GetParentRow(this._relation, global::System.Data.DataRowVersion.Default); for ( ; ((parent != null) && (traversedRows.ContainsKey(parent) == false)); ) { distance = (distance + 1); root = parent; traversedRows[parent] = parent; parent = parent.GetParentRow(this._relation, global::System.Data.DataRowVersion.Default); } if ((distance == 0)) { traversedRows.Clear(); traversedRows[row] = row; parent = row.GetParentRow(this._relation, global::System.Data.DataRowVersion.Original); for ( ; ((parent != null) && (traversedRows.ContainsKey(parent) == false)); ) { distance = (distance + 1); root = parent; traversedRows[parent] = parent; parent = parent.GetParentRow(this._relation, global::System.Data.DataRowVersion.Original); } } return root; } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "17.0.0.0")] public int Compare(global::System.Data.DataRow row1, global::System.Data.DataRow row2) { if (object.ReferenceEquals(row1, row2)) { return 0; } if ((row1 == null)) { return -1; } if ((row2 == null)) { return 1; } int distance1 = 0; global::System.Data.DataRow root1 = this.GetRoot(row1, out distance1); int distance2 = 0; global::System.Data.DataRow root2 = this.GetRoot(row2, out distance2); if (object.ReferenceEquals(root1, root2)) { return (this._childFirst * distance1.CompareTo(distance2)); } else { global::System.Diagnostics.Debug.Assert(((root1.Table != null) && (root2.Table != null))); if ((root1.Table.Rows.IndexOf(root1) < root2.Table.Rows.IndexOf(root2))) { return -1; } else { return 1; } } } } } } #pragma warning restore 1591