7028 lines
		
	
	
		
			417 KiB
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			7028 lines
		
	
	
		
			417 KiB
		
	
	
	
		
			C#
		
	
	
	
	
	
| //------------------------------------------------------------------------------
 | |
| // <auto-generated>
 | |
| //     이 코드는 도구를 사용하여 생성되었습니다.
 | |
| //     런타임 버전:4.0.30319.42000
 | |
| //
 | |
| //     파일 내용을 변경하면 잘못된 동작이 발생할 수 있으며, 코드를 다시 생성하면
 | |
| //     이러한 변경 내용이 손실됩니다.
 | |
| // </auto-generated>
 | |
| //------------------------------------------------------------------------------
 | |
| 
 | |
| #pragma warning disable 1591
 | |
| 
 | |
| namespace JobReportMailService {
 | |
|     
 | |
|     
 | |
|     /// <summary>
 | |
|     ///Represents a strongly typed in-memory cache of data.
 | |
|     ///</summary>
 | |
|     [global::System.Serializable()]
 | |
|     [global::System.ComponentModel.DesignerCategoryAttribute("code")]
 | |
|     [global::System.ComponentModel.ToolboxItem(true)]
 | |
|     [global::System.Xml.Serialization.XmlSchemaProviderAttribute("GetTypedDataSetSchema")]
 | |
|     [global::System.Xml.Serialization.XmlRootAttribute("DataSet1")]
 | |
|     [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.DataSet")]
 | |
|     public partial class DataSet1 : global::System.Data.DataSet {
 | |
|         
 | |
|         private vMailingProjectScheduleDataTable tablevMailingProjectSchedule;
 | |
|         
 | |
|         private MailAutoDataTable tableMailAuto;
 | |
|         
 | |
|         private MailDataDataTable tableMailData;
 | |
|         
 | |
|         private MailFormDataTable tableMailForm;
 | |
|         
 | |
|         private global::System.Data.SchemaSerializationMode _schemaSerializationMode = global::System.Data.SchemaSerializationMode.IncludeSchema;
 | |
|         
 | |
|         [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
 | |
|         [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
 | |
|         public DataSet1() {
 | |
|             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", "16.0.0.0")]
 | |
|         protected DataSet1(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["vMailingProjectSchedule"] != null)) {
 | |
|                     base.Tables.Add(new vMailingProjectScheduleDataTable(ds.Tables["vMailingProjectSchedule"]));
 | |
|                 }
 | |
|                 if ((ds.Tables["MailAuto"] != null)) {
 | |
|                     base.Tables.Add(new MailAutoDataTable(ds.Tables["MailAuto"]));
 | |
|                 }
 | |
|                 if ((ds.Tables["MailData"] != null)) {
 | |
|                     base.Tables.Add(new MailDataDataTable(ds.Tables["MailData"]));
 | |
|                 }
 | |
|                 if ((ds.Tables["MailForm"] != null)) {
 | |
|                     base.Tables.Add(new MailFormDataTable(ds.Tables["MailForm"]));
 | |
|                 }
 | |
|                 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", "16.0.0.0")]
 | |
|         [global::System.ComponentModel.Browsable(false)]
 | |
|         [global::System.ComponentModel.DesignerSerializationVisibility(global::System.ComponentModel.DesignerSerializationVisibility.Content)]
 | |
|         public vMailingProjectScheduleDataTable vMailingProjectSchedule {
 | |
|             get {
 | |
|                 return this.tablevMailingProjectSchedule;
 | |
|             }
 | |
|         }
 | |
|         
 | |
|         [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
 | |
|         [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
 | |
|         [global::System.ComponentModel.Browsable(false)]
 | |
|         [global::System.ComponentModel.DesignerSerializationVisibility(global::System.ComponentModel.DesignerSerializationVisibility.Content)]
 | |
|         public MailAutoDataTable MailAuto {
 | |
|             get {
 | |
|                 return this.tableMailAuto;
 | |
|             }
 | |
|         }
 | |
|         
 | |
|         [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
 | |
|         [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
 | |
|         [global::System.ComponentModel.Browsable(false)]
 | |
|         [global::System.ComponentModel.DesignerSerializationVisibility(global::System.ComponentModel.DesignerSerializationVisibility.Content)]
 | |
|         public MailDataDataTable MailData {
 | |
|             get {
 | |
|                 return this.tableMailData;
 | |
|             }
 | |
|         }
 | |
|         
 | |
|         [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
 | |
|         [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
 | |
|         [global::System.ComponentModel.Browsable(false)]
 | |
|         [global::System.ComponentModel.DesignerSerializationVisibility(global::System.ComponentModel.DesignerSerializationVisibility.Content)]
 | |
|         public MailFormDataTable MailForm {
 | |
|             get {
 | |
|                 return this.tableMailForm;
 | |
|             }
 | |
|         }
 | |
|         
 | |
|         [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
 | |
|         [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.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", "16.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", "16.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", "16.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", "16.0.0.0")]
 | |
|         public override global::System.Data.DataSet Clone() {
 | |
|             DataSet1 cln = ((DataSet1)(base.Clone()));
 | |
|             cln.InitVars();
 | |
|             cln.SchemaSerializationMode = this.SchemaSerializationMode;
 | |
|             return cln;
 | |
|         }
 | |
|         
 | |
|         [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
 | |
|         [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
 | |
|         protected override bool ShouldSerializeTables() {
 | |
|             return false;
 | |
|         }
 | |
|         
 | |
|         [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
 | |
|         [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
 | |
|         protected override bool ShouldSerializeRelations() {
 | |
|             return false;
 | |
|         }
 | |
|         
 | |
|         [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
 | |
|         [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.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["vMailingProjectSchedule"] != null)) {
 | |
|                     base.Tables.Add(new vMailingProjectScheduleDataTable(ds.Tables["vMailingProjectSchedule"]));
 | |
|                 }
 | |
|                 if ((ds.Tables["MailAuto"] != null)) {
 | |
|                     base.Tables.Add(new MailAutoDataTable(ds.Tables["MailAuto"]));
 | |
|                 }
 | |
|                 if ((ds.Tables["MailData"] != null)) {
 | |
|                     base.Tables.Add(new MailDataDataTable(ds.Tables["MailData"]));
 | |
|                 }
 | |
|                 if ((ds.Tables["MailForm"] != null)) {
 | |
|                     base.Tables.Add(new MailFormDataTable(ds.Tables["MailForm"]));
 | |
|                 }
 | |
|                 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", "16.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", "16.0.0.0")]
 | |
|         internal void InitVars() {
 | |
|             this.InitVars(true);
 | |
|         }
 | |
|         
 | |
|         [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
 | |
|         [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
 | |
|         internal void InitVars(bool initTable) {
 | |
|             this.tablevMailingProjectSchedule = ((vMailingProjectScheduleDataTable)(base.Tables["vMailingProjectSchedule"]));
 | |
|             if ((initTable == true)) {
 | |
|                 if ((this.tablevMailingProjectSchedule != null)) {
 | |
|                     this.tablevMailingProjectSchedule.InitVars();
 | |
|                 }
 | |
|             }
 | |
|             this.tableMailAuto = ((MailAutoDataTable)(base.Tables["MailAuto"]));
 | |
|             if ((initTable == true)) {
 | |
|                 if ((this.tableMailAuto != null)) {
 | |
|                     this.tableMailAuto.InitVars();
 | |
|                 }
 | |
|             }
 | |
|             this.tableMailData = ((MailDataDataTable)(base.Tables["MailData"]));
 | |
|             if ((initTable == true)) {
 | |
|                 if ((this.tableMailData != null)) {
 | |
|                     this.tableMailData.InitVars();
 | |
|                 }
 | |
|             }
 | |
|             this.tableMailForm = ((MailFormDataTable)(base.Tables["MailForm"]));
 | |
|             if ((initTable == true)) {
 | |
|                 if ((this.tableMailForm != null)) {
 | |
|                     this.tableMailForm.InitVars();
 | |
|                 }
 | |
|             }
 | |
|         }
 | |
|         
 | |
|         [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
 | |
|         [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
 | |
|         private void InitClass() {
 | |
|             this.DataSetName = "DataSet1";
 | |
|             this.Prefix = "";
 | |
|             this.Namespace = "http://tempuri.org/DataSet1.xsd";
 | |
|             this.EnforceConstraints = true;
 | |
|             this.SchemaSerializationMode = global::System.Data.SchemaSerializationMode.IncludeSchema;
 | |
|             this.tablevMailingProjectSchedule = new vMailingProjectScheduleDataTable();
 | |
|             base.Tables.Add(this.tablevMailingProjectSchedule);
 | |
|             this.tableMailAuto = new MailAutoDataTable();
 | |
|             base.Tables.Add(this.tableMailAuto);
 | |
|             this.tableMailData = new MailDataDataTable();
 | |
|             base.Tables.Add(this.tableMailData);
 | |
|             this.tableMailForm = new MailFormDataTable();
 | |
|             base.Tables.Add(this.tableMailForm);
 | |
|         }
 | |
|         
 | |
|         [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
 | |
|         [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
 | |
|         private bool ShouldSerializevMailingProjectSchedule() {
 | |
|             return false;
 | |
|         }
 | |
|         
 | |
|         [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
 | |
|         [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
 | |
|         private bool ShouldSerializeMailAuto() {
 | |
|             return false;
 | |
|         }
 | |
|         
 | |
|         [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
 | |
|         [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
 | |
|         private bool ShouldSerializeMailData() {
 | |
|             return false;
 | |
|         }
 | |
|         
 | |
|         [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
 | |
|         [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
 | |
|         private bool ShouldSerializeMailForm() {
 | |
|             return false;
 | |
|         }
 | |
|         
 | |
|         [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
 | |
|         [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.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", "16.0.0.0")]
 | |
|         public static global::System.Xml.Schema.XmlSchemaComplexType GetTypedDataSetSchema(global::System.Xml.Schema.XmlSchemaSet xs) {
 | |
|             DataSet1 ds = new DataSet1();
 | |
|             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", "16.0.0.0")]
 | |
|         public delegate void vMailingProjectScheduleRowChangeEventHandler(object sender, vMailingProjectScheduleRowChangeEvent e);
 | |
|         
 | |
|         [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
 | |
|         public delegate void MailAutoRowChangeEventHandler(object sender, MailAutoRowChangeEvent e);
 | |
|         
 | |
|         [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
 | |
|         public delegate void MailDataRowChangeEventHandler(object sender, MailDataRowChangeEvent e);
 | |
|         
 | |
|         [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
 | |
|         public delegate void MailFormRowChangeEventHandler(object sender, MailFormRowChangeEvent e);
 | |
|         
 | |
|         /// <summary>
 | |
|         ///Represents the strongly named DataTable class.
 | |
|         ///</summary>
 | |
|         [global::System.Serializable()]
 | |
|         [global::System.Xml.Serialization.XmlSchemaProviderAttribute("GetTypedTableSchema")]
 | |
|         public partial class vMailingProjectScheduleDataTable : global::System.Data.TypedTableBase<vMailingProjectScheduleRow> {
 | |
|             
 | |
|             private global::System.Data.DataColumn columnidx;
 | |
|             
 | |
|             private global::System.Data.DataColumn columnpdate;
 | |
|             
 | |
|             private global::System.Data.DataColumn columnname;
 | |
|             
 | |
|             private global::System.Data.DataColumn columnuserManager;
 | |
|             
 | |
|             private global::System.Data.DataColumn columnseq;
 | |
|             
 | |
|             private global::System.Data.DataColumn columntitle;
 | |
|             
 | |
|             private global::System.Data.DataColumn columnsw;
 | |
|             
 | |
|             private global::System.Data.DataColumn columnew;
 | |
|             
 | |
|             private global::System.Data.DataColumn columnswa;
 | |
|             
 | |
|             private global::System.Data.DataColumn columnprogress;
 | |
|             
 | |
|             private global::System.Data.DataColumn columnewa;
 | |
|             
 | |
|             private global::System.Data.DataColumn columnww;
 | |
|             
 | |
|             private global::System.Data.DataColumn columnmemo;
 | |
|             
 | |
|             private global::System.Data.DataColumn columnsidx;
 | |
|             
 | |
|             [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
 | |
|             [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
 | |
|             public vMailingProjectScheduleDataTable() {
 | |
|                 this.TableName = "vMailingProjectSchedule";
 | |
|                 this.BeginInit();
 | |
|                 this.InitClass();
 | |
|                 this.EndInit();
 | |
|             }
 | |
|             
 | |
|             [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
 | |
|             [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
 | |
|             internal vMailingProjectScheduleDataTable(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", "16.0.0.0")]
 | |
|             protected vMailingProjectScheduleDataTable(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", "16.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", "16.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", "16.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", "16.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", "16.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", "16.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", "16.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", "16.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", "16.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", "16.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", "16.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", "16.0.0.0")]
 | |
|             public global::System.Data.DataColumn wwColumn {
 | |
|                 get {
 | |
|                     return this.columnww;
 | |
|                 }
 | |
|             }
 | |
|             
 | |
|             [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
 | |
|             [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.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", "16.0.0.0")]
 | |
|             public global::System.Data.DataColumn sidxColumn {
 | |
|                 get {
 | |
|                     return this.columnsidx;
 | |
|                 }
 | |
|             }
 | |
|             
 | |
|             [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
 | |
|             [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.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", "16.0.0.0")]
 | |
|             public vMailingProjectScheduleRow this[int index] {
 | |
|                 get {
 | |
|                     return ((vMailingProjectScheduleRow)(this.Rows[index]));
 | |
|                 }
 | |
|             }
 | |
|             
 | |
|             [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
 | |
|             public event vMailingProjectScheduleRowChangeEventHandler vMailingProjectScheduleRowChanging;
 | |
|             
 | |
|             [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
 | |
|             public event vMailingProjectScheduleRowChangeEventHandler vMailingProjectScheduleRowChanged;
 | |
|             
 | |
|             [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
 | |
|             public event vMailingProjectScheduleRowChangeEventHandler vMailingProjectScheduleRowDeleting;
 | |
|             
 | |
|             [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
 | |
|             public event vMailingProjectScheduleRowChangeEventHandler vMailingProjectScheduleRowDeleted;
 | |
|             
 | |
|             [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
 | |
|             [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
 | |
|             public void AddvMailingProjectScheduleRow(vMailingProjectScheduleRow row) {
 | |
|                 this.Rows.Add(row);
 | |
|             }
 | |
|             
 | |
|             [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
 | |
|             [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
 | |
|             public vMailingProjectScheduleRow AddvMailingProjectScheduleRow(int idx, string pdate, string name, string userManager, int seq, string title, int sw, int ew, int swa, int progress, int ewa, int ww, string memo, int sidx) {
 | |
|                 vMailingProjectScheduleRow rowvMailingProjectScheduleRow = ((vMailingProjectScheduleRow)(this.NewRow()));
 | |
|                 object[] columnValuesArray = new object[] {
 | |
|                         idx,
 | |
|                         pdate,
 | |
|                         name,
 | |
|                         userManager,
 | |
|                         seq,
 | |
|                         title,
 | |
|                         sw,
 | |
|                         ew,
 | |
|                         swa,
 | |
|                         progress,
 | |
|                         ewa,
 | |
|                         ww,
 | |
|                         memo,
 | |
|                         sidx};
 | |
|                 rowvMailingProjectScheduleRow.ItemArray = columnValuesArray;
 | |
|                 this.Rows.Add(rowvMailingProjectScheduleRow);
 | |
|                 return rowvMailingProjectScheduleRow;
 | |
|             }
 | |
|             
 | |
|             [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
 | |
|             [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
 | |
|             public vMailingProjectScheduleRow FindBysidxidx(int sidx, int idx) {
 | |
|                 return ((vMailingProjectScheduleRow)(this.Rows.Find(new object[] {
 | |
|                             sidx,
 | |
|                             idx})));
 | |
|             }
 | |
|             
 | |
|             [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
 | |
|             [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
 | |
|             public override global::System.Data.DataTable Clone() {
 | |
|                 vMailingProjectScheduleDataTable cln = ((vMailingProjectScheduleDataTable)(base.Clone()));
 | |
|                 cln.InitVars();
 | |
|                 return cln;
 | |
|             }
 | |
|             
 | |
|             [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
 | |
|             [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
 | |
|             protected override global::System.Data.DataTable CreateInstance() {
 | |
|                 return new vMailingProjectScheduleDataTable();
 | |
|             }
 | |
|             
 | |
|             [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
 | |
|             [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
 | |
|             internal void InitVars() {
 | |
|                 this.columnidx = base.Columns["idx"];
 | |
|                 this.columnpdate = base.Columns["pdate"];
 | |
|                 this.columnname = base.Columns["name"];
 | |
|                 this.columnuserManager = base.Columns["userManager"];
 | |
|                 this.columnseq = base.Columns["seq"];
 | |
|                 this.columntitle = base.Columns["title"];
 | |
|                 this.columnsw = base.Columns["sw"];
 | |
|                 this.columnew = base.Columns["ew"];
 | |
|                 this.columnswa = base.Columns["swa"];
 | |
|                 this.columnprogress = base.Columns["progress"];
 | |
|                 this.columnewa = base.Columns["ewa"];
 | |
|                 this.columnww = base.Columns["ww"];
 | |
|                 this.columnmemo = base.Columns["memo"];
 | |
|                 this.columnsidx = base.Columns["sidx"];
 | |
|             }
 | |
|             
 | |
|             [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
 | |
|             [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.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.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.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.columnsw = new global::System.Data.DataColumn("sw", typeof(int), null, global::System.Data.MappingType.Element);
 | |
|                 base.Columns.Add(this.columnsw);
 | |
|                 this.columnew = new global::System.Data.DataColumn("ew", typeof(int), null, global::System.Data.MappingType.Element);
 | |
|                 base.Columns.Add(this.columnew);
 | |
|                 this.columnswa = new global::System.Data.DataColumn("swa", typeof(int), null, global::System.Data.MappingType.Element);
 | |
|                 base.Columns.Add(this.columnswa);
 | |
|                 this.columnprogress = new global::System.Data.DataColumn("progress", typeof(int), null, global::System.Data.MappingType.Element);
 | |
|                 base.Columns.Add(this.columnprogress);
 | |
|                 this.columnewa = new global::System.Data.DataColumn("ewa", typeof(int), null, global::System.Data.MappingType.Element);
 | |
|                 base.Columns.Add(this.columnewa);
 | |
|                 this.columnww = new global::System.Data.DataColumn("ww", typeof(int), null, global::System.Data.MappingType.Element);
 | |
|                 base.Columns.Add(this.columnww);
 | |
|                 this.columnmemo = new global::System.Data.DataColumn("memo", typeof(string), null, global::System.Data.MappingType.Element);
 | |
|                 base.Columns.Add(this.columnmemo);
 | |
|                 this.columnsidx = new global::System.Data.DataColumn("sidx", typeof(int), null, global::System.Data.MappingType.Element);
 | |
|                 base.Columns.Add(this.columnsidx);
 | |
|                 this.Constraints.Add(new global::System.Data.UniqueConstraint("Constraint1", new global::System.Data.DataColumn[] {
 | |
|                                 this.columnsidx,
 | |
|                                 this.columnidx}, true));
 | |
|                 this.columnidx.AllowDBNull = false;
 | |
|                 this.columnpdate.MaxLength = 10;
 | |
|                 this.columnname.MaxLength = 255;
 | |
|                 this.columnuserManager.MaxLength = 50;
 | |
|                 this.columntitle.MaxLength = 100;
 | |
|                 this.columnww.ReadOnly = true;
 | |
|                 this.columnmemo.MaxLength = 2147483647;
 | |
|                 this.columnsidx.AllowDBNull = false;
 | |
|             }
 | |
|             
 | |
|             [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
 | |
|             [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
 | |
|             public vMailingProjectScheduleRow NewvMailingProjectScheduleRow() {
 | |
|                 return ((vMailingProjectScheduleRow)(this.NewRow()));
 | |
|             }
 | |
|             
 | |
|             [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
 | |
|             [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
 | |
|             protected override global::System.Data.DataRow NewRowFromBuilder(global::System.Data.DataRowBuilder builder) {
 | |
|                 return new vMailingProjectScheduleRow(builder);
 | |
|             }
 | |
|             
 | |
|             [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
 | |
|             [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
 | |
|             protected override global::System.Type GetRowType() {
 | |
|                 return typeof(vMailingProjectScheduleRow);
 | |
|             }
 | |
|             
 | |
|             [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
 | |
|             [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
 | |
|             protected override void OnRowChanged(global::System.Data.DataRowChangeEventArgs e) {
 | |
|                 base.OnRowChanged(e);
 | |
|                 if ((this.vMailingProjectScheduleRowChanged != null)) {
 | |
|                     this.vMailingProjectScheduleRowChanged(this, new vMailingProjectScheduleRowChangeEvent(((vMailingProjectScheduleRow)(e.Row)), e.Action));
 | |
|                 }
 | |
|             }
 | |
|             
 | |
|             [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
 | |
|             [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
 | |
|             protected override void OnRowChanging(global::System.Data.DataRowChangeEventArgs e) {
 | |
|                 base.OnRowChanging(e);
 | |
|                 if ((this.vMailingProjectScheduleRowChanging != null)) {
 | |
|                     this.vMailingProjectScheduleRowChanging(this, new vMailingProjectScheduleRowChangeEvent(((vMailingProjectScheduleRow)(e.Row)), e.Action));
 | |
|                 }
 | |
|             }
 | |
|             
 | |
|             [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
 | |
|             [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
 | |
|             protected override void OnRowDeleted(global::System.Data.DataRowChangeEventArgs e) {
 | |
|                 base.OnRowDeleted(e);
 | |
|                 if ((this.vMailingProjectScheduleRowDeleted != null)) {
 | |
|                     this.vMailingProjectScheduleRowDeleted(this, new vMailingProjectScheduleRowChangeEvent(((vMailingProjectScheduleRow)(e.Row)), e.Action));
 | |
|                 }
 | |
|             }
 | |
|             
 | |
|             [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
 | |
|             [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
 | |
|             protected override void OnRowDeleting(global::System.Data.DataRowChangeEventArgs e) {
 | |
|                 base.OnRowDeleting(e);
 | |
|                 if ((this.vMailingProjectScheduleRowDeleting != null)) {
 | |
|                     this.vMailingProjectScheduleRowDeleting(this, new vMailingProjectScheduleRowChangeEvent(((vMailingProjectScheduleRow)(e.Row)), e.Action));
 | |
|                 }
 | |
|             }
 | |
|             
 | |
|             [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
 | |
|             [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
 | |
|             public void RemovevMailingProjectScheduleRow(vMailingProjectScheduleRow row) {
 | |
|                 this.Rows.Remove(row);
 | |
|             }
 | |
|             
 | |
|             [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
 | |
|             [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.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();
 | |
|                 DataSet1 ds = new DataSet1();
 | |
|                 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 = "vMailingProjectScheduleDataTable";
 | |
|                 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;
 | |
|             }
 | |
|         }
 | |
|         
 | |
|         /// <summary>
 | |
|         ///Represents the strongly named DataTable class.
 | |
|         ///</summary>
 | |
|         [global::System.Serializable()]
 | |
|         [global::System.Xml.Serialization.XmlSchemaProviderAttribute("GetTypedTableSchema")]
 | |
|         public partial class MailAutoDataTable : global::System.Data.TypedTableBase<MailAutoRow> {
 | |
|             
 | |
|             private global::System.Data.DataColumn columnidx;
 | |
|             
 | |
|             private global::System.Data.DataColumn columnenable;
 | |
|             
 | |
|             private global::System.Data.DataColumn columnfidx;
 | |
|             
 | |
|             private global::System.Data.DataColumn columngcode;
 | |
|             
 | |
|             private global::System.Data.DataColumn columntolist;
 | |
|             
 | |
|             private global::System.Data.DataColumn columnbcc;
 | |
|             
 | |
|             private global::System.Data.DataColumn columncc;
 | |
|             
 | |
|             private global::System.Data.DataColumn columnsdate;
 | |
|             
 | |
|             private global::System.Data.DataColumn columnedate;
 | |
|             
 | |
|             private global::System.Data.DataColumn columnstime;
 | |
|             
 | |
|             private global::System.Data.DataColumn columnsday;
 | |
|             
 | |
|             private global::System.Data.DataColumn columnwuid;
 | |
|             
 | |
|             private global::System.Data.DataColumn columnwdate;
 | |
|             
 | |
|             private global::System.Data.DataColumn columnfromlist;
 | |
|             
 | |
|             private global::System.Data.DataColumn columnsubject;
 | |
|             
 | |
|             private global::System.Data.DataColumn columnbody;
 | |
|             
 | |
|             [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
 | |
|             [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
 | |
|             public MailAutoDataTable() {
 | |
|                 this.TableName = "MailAuto";
 | |
|                 this.BeginInit();
 | |
|                 this.InitClass();
 | |
|                 this.EndInit();
 | |
|             }
 | |
|             
 | |
|             [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
 | |
|             [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
 | |
|             internal MailAutoDataTable(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", "16.0.0.0")]
 | |
|             protected MailAutoDataTable(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", "16.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", "16.0.0.0")]
 | |
|             public global::System.Data.DataColumn enableColumn {
 | |
|                 get {
 | |
|                     return this.columnenable;
 | |
|                 }
 | |
|             }
 | |
|             
 | |
|             [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
 | |
|             [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
 | |
|             public global::System.Data.DataColumn fidxColumn {
 | |
|                 get {
 | |
|                     return this.columnfidx;
 | |
|                 }
 | |
|             }
 | |
|             
 | |
|             [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
 | |
|             [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.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", "16.0.0.0")]
 | |
|             public global::System.Data.DataColumn tolistColumn {
 | |
|                 get {
 | |
|                     return this.columntolist;
 | |
|                 }
 | |
|             }
 | |
|             
 | |
|             [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
 | |
|             [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
 | |
|             public global::System.Data.DataColumn bccColumn {
 | |
|                 get {
 | |
|                     return this.columnbcc;
 | |
|                 }
 | |
|             }
 | |
|             
 | |
|             [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
 | |
|             [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
 | |
|             public global::System.Data.DataColumn ccColumn {
 | |
|                 get {
 | |
|                     return this.columncc;
 | |
|                 }
 | |
|             }
 | |
|             
 | |
|             [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
 | |
|             [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.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", "16.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", "16.0.0.0")]
 | |
|             public global::System.Data.DataColumn stimeColumn {
 | |
|                 get {
 | |
|                     return this.columnstime;
 | |
|                 }
 | |
|             }
 | |
|             
 | |
|             [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
 | |
|             [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
 | |
|             public global::System.Data.DataColumn sdayColumn {
 | |
|                 get {
 | |
|                     return this.columnsday;
 | |
|                 }
 | |
|             }
 | |
|             
 | |
|             [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
 | |
|             [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.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", "16.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", "16.0.0.0")]
 | |
|             public global::System.Data.DataColumn fromlistColumn {
 | |
|                 get {
 | |
|                     return this.columnfromlist;
 | |
|                 }
 | |
|             }
 | |
|             
 | |
|             [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
 | |
|             [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
 | |
|             public global::System.Data.DataColumn subjectColumn {
 | |
|                 get {
 | |
|                     return this.columnsubject;
 | |
|                 }
 | |
|             }
 | |
|             
 | |
|             [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
 | |
|             [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
 | |
|             public global::System.Data.DataColumn bodyColumn {
 | |
|                 get {
 | |
|                     return this.columnbody;
 | |
|                 }
 | |
|             }
 | |
|             
 | |
|             [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
 | |
|             [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.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", "16.0.0.0")]
 | |
|             public MailAutoRow this[int index] {
 | |
|                 get {
 | |
|                     return ((MailAutoRow)(this.Rows[index]));
 | |
|                 }
 | |
|             }
 | |
|             
 | |
|             [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
 | |
|             public event MailAutoRowChangeEventHandler MailAutoRowChanging;
 | |
|             
 | |
|             [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
 | |
|             public event MailAutoRowChangeEventHandler MailAutoRowChanged;
 | |
|             
 | |
|             [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
 | |
|             public event MailAutoRowChangeEventHandler MailAutoRowDeleting;
 | |
|             
 | |
|             [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
 | |
|             public event MailAutoRowChangeEventHandler MailAutoRowDeleted;
 | |
|             
 | |
|             [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
 | |
|             [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
 | |
|             public void AddMailAutoRow(MailAutoRow row) {
 | |
|                 this.Rows.Add(row);
 | |
|             }
 | |
|             
 | |
|             [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
 | |
|             [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
 | |
|             public MailAutoRow AddMailAutoRow(
 | |
|                         int idx, 
 | |
|                         bool enable, 
 | |
|                         int fidx, 
 | |
|                         string gcode, 
 | |
|                         string tolist, 
 | |
|                         string bcc, 
 | |
|                         string cc, 
 | |
|                         string sdate, 
 | |
|                         string edate, 
 | |
|                         string stime, 
 | |
|                         byte[] sday, 
 | |
|                         string wuid, 
 | |
|                         System.DateTime wdate, 
 | |
|                         string fromlist, 
 | |
|                         string subject, 
 | |
|                         string body) {
 | |
|                 MailAutoRow rowMailAutoRow = ((MailAutoRow)(this.NewRow()));
 | |
|                 object[] columnValuesArray = new object[] {
 | |
|                         idx,
 | |
|                         enable,
 | |
|                         fidx,
 | |
|                         gcode,
 | |
|                         tolist,
 | |
|                         bcc,
 | |
|                         cc,
 | |
|                         sdate,
 | |
|                         edate,
 | |
|                         stime,
 | |
|                         sday,
 | |
|                         wuid,
 | |
|                         wdate,
 | |
|                         fromlist,
 | |
|                         subject,
 | |
|                         body};
 | |
|                 rowMailAutoRow.ItemArray = columnValuesArray;
 | |
|                 this.Rows.Add(rowMailAutoRow);
 | |
|                 return rowMailAutoRow;
 | |
|             }
 | |
|             
 | |
|             [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
 | |
|             [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
 | |
|             public MailAutoRow FindByidx(int idx) {
 | |
|                 return ((MailAutoRow)(this.Rows.Find(new object[] {
 | |
|                             idx})));
 | |
|             }
 | |
|             
 | |
|             [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
 | |
|             [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
 | |
|             public override global::System.Data.DataTable Clone() {
 | |
|                 MailAutoDataTable cln = ((MailAutoDataTable)(base.Clone()));
 | |
|                 cln.InitVars();
 | |
|                 return cln;
 | |
|             }
 | |
|             
 | |
|             [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
 | |
|             [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
 | |
|             protected override global::System.Data.DataTable CreateInstance() {
 | |
|                 return new MailAutoDataTable();
 | |
|             }
 | |
|             
 | |
|             [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
 | |
|             [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
 | |
|             internal void InitVars() {
 | |
|                 this.columnidx = base.Columns["idx"];
 | |
|                 this.columnenable = base.Columns["enable"];
 | |
|                 this.columnfidx = base.Columns["fidx"];
 | |
|                 this.columngcode = base.Columns["gcode"];
 | |
|                 this.columntolist = base.Columns["tolist"];
 | |
|                 this.columnbcc = base.Columns["bcc"];
 | |
|                 this.columncc = base.Columns["cc"];
 | |
|                 this.columnsdate = base.Columns["sdate"];
 | |
|                 this.columnedate = base.Columns["edate"];
 | |
|                 this.columnstime = base.Columns["stime"];
 | |
|                 this.columnsday = base.Columns["sday"];
 | |
|                 this.columnwuid = base.Columns["wuid"];
 | |
|                 this.columnwdate = base.Columns["wdate"];
 | |
|                 this.columnfromlist = base.Columns["fromlist"];
 | |
|                 this.columnsubject = base.Columns["subject"];
 | |
|                 this.columnbody = base.Columns["body"];
 | |
|             }
 | |
|             
 | |
|             [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
 | |
|             [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.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.columnenable = new global::System.Data.DataColumn("enable", typeof(bool), null, global::System.Data.MappingType.Element);
 | |
|                 base.Columns.Add(this.columnenable);
 | |
|                 this.columnfidx = new global::System.Data.DataColumn("fidx", typeof(int), null, global::System.Data.MappingType.Element);
 | |
|                 base.Columns.Add(this.columnfidx);
 | |
|                 this.columngcode = new global::System.Data.DataColumn("gcode", typeof(string), null, global::System.Data.MappingType.Element);
 | |
|                 base.Columns.Add(this.columngcode);
 | |
|                 this.columntolist = new global::System.Data.DataColumn("tolist", typeof(string), null, global::System.Data.MappingType.Element);
 | |
|                 base.Columns.Add(this.columntolist);
 | |
|                 this.columnbcc = new global::System.Data.DataColumn("bcc", typeof(string), null, global::System.Data.MappingType.Element);
 | |
|                 base.Columns.Add(this.columnbcc);
 | |
|                 this.columncc = new global::System.Data.DataColumn("cc", typeof(string), null, global::System.Data.MappingType.Element);
 | |
|                 base.Columns.Add(this.columncc);
 | |
|                 this.columnsdate = new global::System.Data.DataColumn("sdate", typeof(string), null, global::System.Data.MappingType.Element);
 | |
|                 base.Columns.Add(this.columnsdate);
 | |
|                 this.columnedate = new global::System.Data.DataColumn("edate", typeof(string), null, global::System.Data.MappingType.Element);
 | |
|                 base.Columns.Add(this.columnedate);
 | |
|                 this.columnstime = new global::System.Data.DataColumn("stime", typeof(string), null, global::System.Data.MappingType.Element);
 | |
|                 base.Columns.Add(this.columnstime);
 | |
|                 this.columnsday = new global::System.Data.DataColumn("sday", typeof(byte[]), null, global::System.Data.MappingType.Element);
 | |
|                 base.Columns.Add(this.columnsday);
 | |
|                 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.columnfromlist = new global::System.Data.DataColumn("fromlist", typeof(string), null, global::System.Data.MappingType.Element);
 | |
|                 base.Columns.Add(this.columnfromlist);
 | |
|                 this.columnsubject = new global::System.Data.DataColumn("subject", typeof(string), null, global::System.Data.MappingType.Element);
 | |
|                 base.Columns.Add(this.columnsubject);
 | |
|                 this.columnbody = new global::System.Data.DataColumn("body", typeof(string), null, global::System.Data.MappingType.Element);
 | |
|                 base.Columns.Add(this.columnbody);
 | |
|                 this.Constraints.Add(new global::System.Data.UniqueConstraint("Constraint1", new global::System.Data.DataColumn[] {
 | |
|                                 this.columnidx}, true));
 | |
|                 this.columnidx.AllowDBNull = false;
 | |
|                 this.columnidx.Unique = true;
 | |
|                 this.columnfidx.AllowDBNull = false;
 | |
|                 this.columngcode.AllowDBNull = false;
 | |
|                 this.columngcode.MaxLength = 10;
 | |
|                 this.columntolist.MaxLength = 2147483647;
 | |
|                 this.columnbcc.MaxLength = 2147483647;
 | |
|                 this.columncc.MaxLength = 2147483647;
 | |
|                 this.columnsdate.MaxLength = 10;
 | |
|                 this.columnedate.MaxLength = 10;
 | |
|                 this.columnstime.MaxLength = 8;
 | |
|                 this.columnwuid.AllowDBNull = false;
 | |
|                 this.columnwuid.MaxLength = 20;
 | |
|                 this.columnwdate.AllowDBNull = false;
 | |
|                 this.columnfromlist.MaxLength = 2147483647;
 | |
|                 this.columnsubject.MaxLength = 2147483647;
 | |
|                 this.columnbody.MaxLength = 2147483647;
 | |
|             }
 | |
|             
 | |
|             [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
 | |
|             [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
 | |
|             public MailAutoRow NewMailAutoRow() {
 | |
|                 return ((MailAutoRow)(this.NewRow()));
 | |
|             }
 | |
|             
 | |
|             [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
 | |
|             [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
 | |
|             protected override global::System.Data.DataRow NewRowFromBuilder(global::System.Data.DataRowBuilder builder) {
 | |
|                 return new MailAutoRow(builder);
 | |
|             }
 | |
|             
 | |
|             [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
 | |
|             [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
 | |
|             protected override global::System.Type GetRowType() {
 | |
|                 return typeof(MailAutoRow);
 | |
|             }
 | |
|             
 | |
|             [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
 | |
|             [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
 | |
|             protected override void OnRowChanged(global::System.Data.DataRowChangeEventArgs e) {
 | |
|                 base.OnRowChanged(e);
 | |
|                 if ((this.MailAutoRowChanged != null)) {
 | |
|                     this.MailAutoRowChanged(this, new MailAutoRowChangeEvent(((MailAutoRow)(e.Row)), e.Action));
 | |
|                 }
 | |
|             }
 | |
|             
 | |
|             [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
 | |
|             [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
 | |
|             protected override void OnRowChanging(global::System.Data.DataRowChangeEventArgs e) {
 | |
|                 base.OnRowChanging(e);
 | |
|                 if ((this.MailAutoRowChanging != null)) {
 | |
|                     this.MailAutoRowChanging(this, new MailAutoRowChangeEvent(((MailAutoRow)(e.Row)), e.Action));
 | |
|                 }
 | |
|             }
 | |
|             
 | |
|             [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
 | |
|             [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
 | |
|             protected override void OnRowDeleted(global::System.Data.DataRowChangeEventArgs e) {
 | |
|                 base.OnRowDeleted(e);
 | |
|                 if ((this.MailAutoRowDeleted != null)) {
 | |
|                     this.MailAutoRowDeleted(this, new MailAutoRowChangeEvent(((MailAutoRow)(e.Row)), e.Action));
 | |
|                 }
 | |
|             }
 | |
|             
 | |
|             [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
 | |
|             [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
 | |
|             protected override void OnRowDeleting(global::System.Data.DataRowChangeEventArgs e) {
 | |
|                 base.OnRowDeleting(e);
 | |
|                 if ((this.MailAutoRowDeleting != null)) {
 | |
|                     this.MailAutoRowDeleting(this, new MailAutoRowChangeEvent(((MailAutoRow)(e.Row)), e.Action));
 | |
|                 }
 | |
|             }
 | |
|             
 | |
|             [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
 | |
|             [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
 | |
|             public void RemoveMailAutoRow(MailAutoRow row) {
 | |
|                 this.Rows.Remove(row);
 | |
|             }
 | |
|             
 | |
|             [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
 | |
|             [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.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();
 | |
|                 DataSet1 ds = new DataSet1();
 | |
|                 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 = "MailAutoDataTable";
 | |
|                 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;
 | |
|             }
 | |
|         }
 | |
|         
 | |
|         /// <summary>
 | |
|         ///Represents the strongly named DataTable class.
 | |
|         ///</summary>
 | |
|         [global::System.Serializable()]
 | |
|         [global::System.Xml.Serialization.XmlSchemaProviderAttribute("GetTypedTableSchema")]
 | |
|         public partial class MailDataDataTable : global::System.Data.TypedTableBase<MailDataRow> {
 | |
|             
 | |
|             private global::System.Data.DataColumn columnidx;
 | |
|             
 | |
|             private global::System.Data.DataColumn columnproject;
 | |
|             
 | |
|             private global::System.Data.DataColumn columngcode;
 | |
|             
 | |
|             private global::System.Data.DataColumn columncate;
 | |
|             
 | |
|             private global::System.Data.DataColumn columnpdate;
 | |
|             
 | |
|             private global::System.Data.DataColumn columnsubject;
 | |
|             
 | |
|             private global::System.Data.DataColumn columntolist;
 | |
|             
 | |
|             private global::System.Data.DataColumn columnbcc;
 | |
|             
 | |
|             private global::System.Data.DataColumn columncc;
 | |
|             
 | |
|             private global::System.Data.DataColumn columnbody;
 | |
|             
 | |
|             private global::System.Data.DataColumn columnSendOK;
 | |
|             
 | |
|             private global::System.Data.DataColumn columnSendMsg;
 | |
|             
 | |
|             private global::System.Data.DataColumn columnaidx;
 | |
|             
 | |
|             private global::System.Data.DataColumn columnatime;
 | |
|             
 | |
|             private global::System.Data.DataColumn columnwuid;
 | |
|             
 | |
|             private global::System.Data.DataColumn columnwdate;
 | |
|             
 | |
|             private global::System.Data.DataColumn columnfromlist;
 | |
|             
 | |
|             [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
 | |
|             [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
 | |
|             public MailDataDataTable() {
 | |
|                 this.TableName = "MailData";
 | |
|                 this.BeginInit();
 | |
|                 this.InitClass();
 | |
|                 this.EndInit();
 | |
|             }
 | |
|             
 | |
|             [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
 | |
|             [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
 | |
|             internal MailDataDataTable(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", "16.0.0.0")]
 | |
|             protected MailDataDataTable(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", "16.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", "16.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", "16.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", "16.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", "16.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", "16.0.0.0")]
 | |
|             public global::System.Data.DataColumn subjectColumn {
 | |
|                 get {
 | |
|                     return this.columnsubject;
 | |
|                 }
 | |
|             }
 | |
|             
 | |
|             [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
 | |
|             [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
 | |
|             public global::System.Data.DataColumn tolistColumn {
 | |
|                 get {
 | |
|                     return this.columntolist;
 | |
|                 }
 | |
|             }
 | |
|             
 | |
|             [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
 | |
|             [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
 | |
|             public global::System.Data.DataColumn bccColumn {
 | |
|                 get {
 | |
|                     return this.columnbcc;
 | |
|                 }
 | |
|             }
 | |
|             
 | |
|             [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
 | |
|             [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
 | |
|             public global::System.Data.DataColumn ccColumn {
 | |
|                 get {
 | |
|                     return this.columncc;
 | |
|                 }
 | |
|             }
 | |
|             
 | |
|             [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
 | |
|             [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
 | |
|             public global::System.Data.DataColumn bodyColumn {
 | |
|                 get {
 | |
|                     return this.columnbody;
 | |
|                 }
 | |
|             }
 | |
|             
 | |
|             [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
 | |
|             [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
 | |
|             public global::System.Data.DataColumn SendOKColumn {
 | |
|                 get {
 | |
|                     return this.columnSendOK;
 | |
|                 }
 | |
|             }
 | |
|             
 | |
|             [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
 | |
|             [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
 | |
|             public global::System.Data.DataColumn SendMsgColumn {
 | |
|                 get {
 | |
|                     return this.columnSendMsg;
 | |
|                 }
 | |
|             }
 | |
|             
 | |
|             [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
 | |
|             [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
 | |
|             public global::System.Data.DataColumn aidxColumn {
 | |
|                 get {
 | |
|                     return this.columnaidx;
 | |
|                 }
 | |
|             }
 | |
|             
 | |
|             [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
 | |
|             [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
 | |
|             public global::System.Data.DataColumn atimeColumn {
 | |
|                 get {
 | |
|                     return this.columnatime;
 | |
|                 }
 | |
|             }
 | |
|             
 | |
|             [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
 | |
|             [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.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", "16.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", "16.0.0.0")]
 | |
|             public global::System.Data.DataColumn fromlistColumn {
 | |
|                 get {
 | |
|                     return this.columnfromlist;
 | |
|                 }
 | |
|             }
 | |
|             
 | |
|             [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
 | |
|             [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.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", "16.0.0.0")]
 | |
|             public MailDataRow this[int index] {
 | |
|                 get {
 | |
|                     return ((MailDataRow)(this.Rows[index]));
 | |
|                 }
 | |
|             }
 | |
|             
 | |
|             [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
 | |
|             public event MailDataRowChangeEventHandler MailDataRowChanging;
 | |
|             
 | |
|             [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
 | |
|             public event MailDataRowChangeEventHandler MailDataRowChanged;
 | |
|             
 | |
|             [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
 | |
|             public event MailDataRowChangeEventHandler MailDataRowDeleting;
 | |
|             
 | |
|             [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
 | |
|             public event MailDataRowChangeEventHandler MailDataRowDeleted;
 | |
|             
 | |
|             [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
 | |
|             [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
 | |
|             public void AddMailDataRow(MailDataRow row) {
 | |
|                 this.Rows.Add(row);
 | |
|             }
 | |
|             
 | |
|             [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
 | |
|             [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
 | |
|             public MailDataRow AddMailDataRow(
 | |
|                         int project, 
 | |
|                         string gcode, 
 | |
|                         string cate, 
 | |
|                         string pdate, 
 | |
|                         string subject, 
 | |
|                         string tolist, 
 | |
|                         string bcc, 
 | |
|                         string cc, 
 | |
|                         string body, 
 | |
|                         bool SendOK, 
 | |
|                         string SendMsg, 
 | |
|                         int aidx, 
 | |
|                         string atime, 
 | |
|                         string wuid, 
 | |
|                         System.DateTime wdate, 
 | |
|                         string fromlist) {
 | |
|                 MailDataRow rowMailDataRow = ((MailDataRow)(this.NewRow()));
 | |
|                 object[] columnValuesArray = new object[] {
 | |
|                         null,
 | |
|                         project,
 | |
|                         gcode,
 | |
|                         cate,
 | |
|                         pdate,
 | |
|                         subject,
 | |
|                         tolist,
 | |
|                         bcc,
 | |
|                         cc,
 | |
|                         body,
 | |
|                         SendOK,
 | |
|                         SendMsg,
 | |
|                         aidx,
 | |
|                         atime,
 | |
|                         wuid,
 | |
|                         wdate,
 | |
|                         fromlist};
 | |
|                 rowMailDataRow.ItemArray = columnValuesArray;
 | |
|                 this.Rows.Add(rowMailDataRow);
 | |
|                 return rowMailDataRow;
 | |
|             }
 | |
|             
 | |
|             [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
 | |
|             [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
 | |
|             public MailDataRow FindByidx(int idx) {
 | |
|                 return ((MailDataRow)(this.Rows.Find(new object[] {
 | |
|                             idx})));
 | |
|             }
 | |
|             
 | |
|             [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
 | |
|             [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
 | |
|             public override global::System.Data.DataTable Clone() {
 | |
|                 MailDataDataTable cln = ((MailDataDataTable)(base.Clone()));
 | |
|                 cln.InitVars();
 | |
|                 return cln;
 | |
|             }
 | |
|             
 | |
|             [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
 | |
|             [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
 | |
|             protected override global::System.Data.DataTable CreateInstance() {
 | |
|                 return new MailDataDataTable();
 | |
|             }
 | |
|             
 | |
|             [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
 | |
|             [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
 | |
|             internal void InitVars() {
 | |
|                 this.columnidx = base.Columns["idx"];
 | |
|                 this.columnproject = base.Columns["project"];
 | |
|                 this.columngcode = base.Columns["gcode"];
 | |
|                 this.columncate = base.Columns["cate"];
 | |
|                 this.columnpdate = base.Columns["pdate"];
 | |
|                 this.columnsubject = base.Columns["subject"];
 | |
|                 this.columntolist = base.Columns["tolist"];
 | |
|                 this.columnbcc = base.Columns["bcc"];
 | |
|                 this.columncc = base.Columns["cc"];
 | |
|                 this.columnbody = base.Columns["body"];
 | |
|                 this.columnSendOK = base.Columns["SendOK"];
 | |
|                 this.columnSendMsg = base.Columns["SendMsg"];
 | |
|                 this.columnaidx = base.Columns["aidx"];
 | |
|                 this.columnatime = base.Columns["atime"];
 | |
|                 this.columnwuid = base.Columns["wuid"];
 | |
|                 this.columnwdate = base.Columns["wdate"];
 | |
|                 this.columnfromlist = base.Columns["fromlist"];
 | |
|             }
 | |
|             
 | |
|             [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
 | |
|             [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.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.columnproject = new global::System.Data.DataColumn("project", typeof(int), null, global::System.Data.MappingType.Element);
 | |
|                 base.Columns.Add(this.columnproject);
 | |
|                 this.columngcode = new global::System.Data.DataColumn("gcode", typeof(string), null, global::System.Data.MappingType.Element);
 | |
|                 base.Columns.Add(this.columngcode);
 | |
|                 this.columncate = new global::System.Data.DataColumn("cate", typeof(string), null, global::System.Data.MappingType.Element);
 | |
|                 base.Columns.Add(this.columncate);
 | |
|                 this.columnpdate = new global::System.Data.DataColumn("pdate", typeof(string), null, global::System.Data.MappingType.Element);
 | |
|                 base.Columns.Add(this.columnpdate);
 | |
|                 this.columnsubject = new global::System.Data.DataColumn("subject", typeof(string), null, global::System.Data.MappingType.Element);
 | |
|                 base.Columns.Add(this.columnsubject);
 | |
|                 this.columntolist = new global::System.Data.DataColumn("tolist", typeof(string), null, global::System.Data.MappingType.Element);
 | |
|                 base.Columns.Add(this.columntolist);
 | |
|                 this.columnbcc = new global::System.Data.DataColumn("bcc", typeof(string), null, global::System.Data.MappingType.Element);
 | |
|                 base.Columns.Add(this.columnbcc);
 | |
|                 this.columncc = new global::System.Data.DataColumn("cc", typeof(string), null, global::System.Data.MappingType.Element);
 | |
|                 base.Columns.Add(this.columncc);
 | |
|                 this.columnbody = new global::System.Data.DataColumn("body", typeof(string), null, global::System.Data.MappingType.Element);
 | |
|                 base.Columns.Add(this.columnbody);
 | |
|                 this.columnSendOK = new global::System.Data.DataColumn("SendOK", typeof(bool), null, global::System.Data.MappingType.Element);
 | |
|                 base.Columns.Add(this.columnSendOK);
 | |
|                 this.columnSendMsg = new global::System.Data.DataColumn("SendMsg", typeof(string), null, global::System.Data.MappingType.Element);
 | |
|                 base.Columns.Add(this.columnSendMsg);
 | |
|                 this.columnaidx = new global::System.Data.DataColumn("aidx", typeof(int), null, global::System.Data.MappingType.Element);
 | |
|                 base.Columns.Add(this.columnaidx);
 | |
|                 this.columnatime = new global::System.Data.DataColumn("atime", typeof(string), null, global::System.Data.MappingType.Element);
 | |
|                 base.Columns.Add(this.columnatime);
 | |
|                 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.columnfromlist = new global::System.Data.DataColumn("fromlist", typeof(string), null, global::System.Data.MappingType.Element);
 | |
|                 base.Columns.Add(this.columnfromlist);
 | |
|                 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.columncate.MaxLength = 20;
 | |
|                 this.columnpdate.MaxLength = 10;
 | |
|                 this.columnsubject.MaxLength = 2147483647;
 | |
|                 this.columntolist.MaxLength = 2147483647;
 | |
|                 this.columnbcc.MaxLength = 2147483647;
 | |
|                 this.columncc.MaxLength = 2147483647;
 | |
|                 this.columnbody.MaxLength = 2147483647;
 | |
|                 this.columnSendMsg.MaxLength = 255;
 | |
|                 this.columnatime.MaxLength = 20;
 | |
|                 this.columnwuid.AllowDBNull = false;
 | |
|                 this.columnwuid.MaxLength = 20;
 | |
|                 this.columnwdate.AllowDBNull = false;
 | |
|                 this.columnfromlist.MaxLength = 2147483647;
 | |
|             }
 | |
|             
 | |
|             [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
 | |
|             [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
 | |
|             public MailDataRow NewMailDataRow() {
 | |
|                 return ((MailDataRow)(this.NewRow()));
 | |
|             }
 | |
|             
 | |
|             [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
 | |
|             [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
 | |
|             protected override global::System.Data.DataRow NewRowFromBuilder(global::System.Data.DataRowBuilder builder) {
 | |
|                 return new MailDataRow(builder);
 | |
|             }
 | |
|             
 | |
|             [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
 | |
|             [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
 | |
|             protected override global::System.Type GetRowType() {
 | |
|                 return typeof(MailDataRow);
 | |
|             }
 | |
|             
 | |
|             [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
 | |
|             [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
 | |
|             protected override void OnRowChanged(global::System.Data.DataRowChangeEventArgs e) {
 | |
|                 base.OnRowChanged(e);
 | |
|                 if ((this.MailDataRowChanged != null)) {
 | |
|                     this.MailDataRowChanged(this, new MailDataRowChangeEvent(((MailDataRow)(e.Row)), e.Action));
 | |
|                 }
 | |
|             }
 | |
|             
 | |
|             [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
 | |
|             [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
 | |
|             protected override void OnRowChanging(global::System.Data.DataRowChangeEventArgs e) {
 | |
|                 base.OnRowChanging(e);
 | |
|                 if ((this.MailDataRowChanging != null)) {
 | |
|                     this.MailDataRowChanging(this, new MailDataRowChangeEvent(((MailDataRow)(e.Row)), e.Action));
 | |
|                 }
 | |
|             }
 | |
|             
 | |
|             [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
 | |
|             [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
 | |
|             protected override void OnRowDeleted(global::System.Data.DataRowChangeEventArgs e) {
 | |
|                 base.OnRowDeleted(e);
 | |
|                 if ((this.MailDataRowDeleted != null)) {
 | |
|                     this.MailDataRowDeleted(this, new MailDataRowChangeEvent(((MailDataRow)(e.Row)), e.Action));
 | |
|                 }
 | |
|             }
 | |
|             
 | |
|             [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
 | |
|             [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
 | |
|             protected override void OnRowDeleting(global::System.Data.DataRowChangeEventArgs e) {
 | |
|                 base.OnRowDeleting(e);
 | |
|                 if ((this.MailDataRowDeleting != null)) {
 | |
|                     this.MailDataRowDeleting(this, new MailDataRowChangeEvent(((MailDataRow)(e.Row)), e.Action));
 | |
|                 }
 | |
|             }
 | |
|             
 | |
|             [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
 | |
|             [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
 | |
|             public void RemoveMailDataRow(MailDataRow row) {
 | |
|                 this.Rows.Remove(row);
 | |
|             }
 | |
|             
 | |
|             [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
 | |
|             [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.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();
 | |
|                 DataSet1 ds = new DataSet1();
 | |
|                 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 = "MailDataDataTable";
 | |
|                 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;
 | |
|             }
 | |
|         }
 | |
|         
 | |
|         /// <summary>
 | |
|         ///Represents the strongly named DataTable class.
 | |
|         ///</summary>
 | |
|         [global::System.Serializable()]
 | |
|         [global::System.Xml.Serialization.XmlSchemaProviderAttribute("GetTypedTableSchema")]
 | |
|         public partial class MailFormDataTable : global::System.Data.TypedTableBase<MailFormRow> {
 | |
|             
 | |
|             private global::System.Data.DataColumn columnidx;
 | |
|             
 | |
|             private global::System.Data.DataColumn columngcode;
 | |
|             
 | |
|             private global::System.Data.DataColumn columncate;
 | |
|             
 | |
|             private global::System.Data.DataColumn columntitle;
 | |
|             
 | |
|             private global::System.Data.DataColumn columntolist;
 | |
|             
 | |
|             private global::System.Data.DataColumn columnbcc;
 | |
|             
 | |
|             private global::System.Data.DataColumn columncc;
 | |
|             
 | |
|             private global::System.Data.DataColumn columnsubject;
 | |
|             
 | |
|             private global::System.Data.DataColumn columntail;
 | |
|             
 | |
|             private global::System.Data.DataColumn columnbody;
 | |
|             
 | |
|             private global::System.Data.DataColumn columnselfTo;
 | |
|             
 | |
|             private global::System.Data.DataColumn columnselfCC;
 | |
|             
 | |
|             private global::System.Data.DataColumn columnselfBCC;
 | |
|             
 | |
|             private global::System.Data.DataColumn columnwuid;
 | |
|             
 | |
|             private global::System.Data.DataColumn columnwdate;
 | |
|             
 | |
|             [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
 | |
|             [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
 | |
|             public MailFormDataTable() {
 | |
|                 this.TableName = "MailForm";
 | |
|                 this.BeginInit();
 | |
|                 this.InitClass();
 | |
|                 this.EndInit();
 | |
|             }
 | |
|             
 | |
|             [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
 | |
|             [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
 | |
|             internal MailFormDataTable(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", "16.0.0.0")]
 | |
|             protected MailFormDataTable(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", "16.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", "16.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", "16.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", "16.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", "16.0.0.0")]
 | |
|             public global::System.Data.DataColumn tolistColumn {
 | |
|                 get {
 | |
|                     return this.columntolist;
 | |
|                 }
 | |
|             }
 | |
|             
 | |
|             [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
 | |
|             [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
 | |
|             public global::System.Data.DataColumn bccColumn {
 | |
|                 get {
 | |
|                     return this.columnbcc;
 | |
|                 }
 | |
|             }
 | |
|             
 | |
|             [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
 | |
|             [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
 | |
|             public global::System.Data.DataColumn ccColumn {
 | |
|                 get {
 | |
|                     return this.columncc;
 | |
|                 }
 | |
|             }
 | |
|             
 | |
|             [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
 | |
|             [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
 | |
|             public global::System.Data.DataColumn subjectColumn {
 | |
|                 get {
 | |
|                     return this.columnsubject;
 | |
|                 }
 | |
|             }
 | |
|             
 | |
|             [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
 | |
|             [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
 | |
|             public global::System.Data.DataColumn tailColumn {
 | |
|                 get {
 | |
|                     return this.columntail;
 | |
|                 }
 | |
|             }
 | |
|             
 | |
|             [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
 | |
|             [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
 | |
|             public global::System.Data.DataColumn bodyColumn {
 | |
|                 get {
 | |
|                     return this.columnbody;
 | |
|                 }
 | |
|             }
 | |
|             
 | |
|             [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
 | |
|             [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
 | |
|             public global::System.Data.DataColumn selfToColumn {
 | |
|                 get {
 | |
|                     return this.columnselfTo;
 | |
|                 }
 | |
|             }
 | |
|             
 | |
|             [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
 | |
|             [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
 | |
|             public global::System.Data.DataColumn selfCCColumn {
 | |
|                 get {
 | |
|                     return this.columnselfCC;
 | |
|                 }
 | |
|             }
 | |
|             
 | |
|             [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
 | |
|             [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
 | |
|             public global::System.Data.DataColumn selfBCCColumn {
 | |
|                 get {
 | |
|                     return this.columnselfBCC;
 | |
|                 }
 | |
|             }
 | |
|             
 | |
|             [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
 | |
|             [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.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", "16.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", "16.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", "16.0.0.0")]
 | |
|             public MailFormRow this[int index] {
 | |
|                 get {
 | |
|                     return ((MailFormRow)(this.Rows[index]));
 | |
|                 }
 | |
|             }
 | |
|             
 | |
|             [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
 | |
|             public event MailFormRowChangeEventHandler MailFormRowChanging;
 | |
|             
 | |
|             [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
 | |
|             public event MailFormRowChangeEventHandler MailFormRowChanged;
 | |
|             
 | |
|             [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
 | |
|             public event MailFormRowChangeEventHandler MailFormRowDeleting;
 | |
|             
 | |
|             [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
 | |
|             public event MailFormRowChangeEventHandler MailFormRowDeleted;
 | |
|             
 | |
|             [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
 | |
|             [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
 | |
|             public void AddMailFormRow(MailFormRow row) {
 | |
|                 this.Rows.Add(row);
 | |
|             }
 | |
|             
 | |
|             [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
 | |
|             [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
 | |
|             public MailFormRow AddMailFormRow(string gcode, string cate, string title, string tolist, string bcc, string cc, string subject, string tail, string body, bool selfTo, bool selfCC, bool selfBCC, string wuid, System.DateTime wdate) {
 | |
|                 MailFormRow rowMailFormRow = ((MailFormRow)(this.NewRow()));
 | |
|                 object[] columnValuesArray = new object[] {
 | |
|                         null,
 | |
|                         gcode,
 | |
|                         cate,
 | |
|                         title,
 | |
|                         tolist,
 | |
|                         bcc,
 | |
|                         cc,
 | |
|                         subject,
 | |
|                         tail,
 | |
|                         body,
 | |
|                         selfTo,
 | |
|                         selfCC,
 | |
|                         selfBCC,
 | |
|                         wuid,
 | |
|                         wdate};
 | |
|                 rowMailFormRow.ItemArray = columnValuesArray;
 | |
|                 this.Rows.Add(rowMailFormRow);
 | |
|                 return rowMailFormRow;
 | |
|             }
 | |
|             
 | |
|             [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
 | |
|             [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
 | |
|             public MailFormRow FindByidx(int idx) {
 | |
|                 return ((MailFormRow)(this.Rows.Find(new object[] {
 | |
|                             idx})));
 | |
|             }
 | |
|             
 | |
|             [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
 | |
|             [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
 | |
|             public override global::System.Data.DataTable Clone() {
 | |
|                 MailFormDataTable cln = ((MailFormDataTable)(base.Clone()));
 | |
|                 cln.InitVars();
 | |
|                 return cln;
 | |
|             }
 | |
|             
 | |
|             [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
 | |
|             [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
 | |
|             protected override global::System.Data.DataTable CreateInstance() {
 | |
|                 return new MailFormDataTable();
 | |
|             }
 | |
|             
 | |
|             [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
 | |
|             [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
 | |
|             internal void InitVars() {
 | |
|                 this.columnidx = base.Columns["idx"];
 | |
|                 this.columngcode = base.Columns["gcode"];
 | |
|                 this.columncate = base.Columns["cate"];
 | |
|                 this.columntitle = base.Columns["title"];
 | |
|                 this.columntolist = base.Columns["tolist"];
 | |
|                 this.columnbcc = base.Columns["bcc"];
 | |
|                 this.columncc = base.Columns["cc"];
 | |
|                 this.columnsubject = base.Columns["subject"];
 | |
|                 this.columntail = base.Columns["tail"];
 | |
|                 this.columnbody = base.Columns["body"];
 | |
|                 this.columnselfTo = base.Columns["selfTo"];
 | |
|                 this.columnselfCC = base.Columns["selfCC"];
 | |
|                 this.columnselfBCC = base.Columns["selfBCC"];
 | |
|                 this.columnwuid = base.Columns["wuid"];
 | |
|                 this.columnwdate = base.Columns["wdate"];
 | |
|             }
 | |
|             
 | |
|             [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
 | |
|             [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.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.columncate = new global::System.Data.DataColumn("cate", typeof(string), null, global::System.Data.MappingType.Element);
 | |
|                 base.Columns.Add(this.columncate);
 | |
|                 this.columntitle = new global::System.Data.DataColumn("title", typeof(string), null, global::System.Data.MappingType.Element);
 | |
|                 base.Columns.Add(this.columntitle);
 | |
|                 this.columntolist = new global::System.Data.DataColumn("tolist", typeof(string), null, global::System.Data.MappingType.Element);
 | |
|                 base.Columns.Add(this.columntolist);
 | |
|                 this.columnbcc = new global::System.Data.DataColumn("bcc", typeof(string), null, global::System.Data.MappingType.Element);
 | |
|                 base.Columns.Add(this.columnbcc);
 | |
|                 this.columncc = new global::System.Data.DataColumn("cc", typeof(string), null, global::System.Data.MappingType.Element);
 | |
|                 base.Columns.Add(this.columncc);
 | |
|                 this.columnsubject = new global::System.Data.DataColumn("subject", typeof(string), null, global::System.Data.MappingType.Element);
 | |
|                 base.Columns.Add(this.columnsubject);
 | |
|                 this.columntail = new global::System.Data.DataColumn("tail", typeof(string), null, global::System.Data.MappingType.Element);
 | |
|                 base.Columns.Add(this.columntail);
 | |
|                 this.columnbody = new global::System.Data.DataColumn("body", typeof(string), null, global::System.Data.MappingType.Element);
 | |
|                 base.Columns.Add(this.columnbody);
 | |
|                 this.columnselfTo = new global::System.Data.DataColumn("selfTo", typeof(bool), null, global::System.Data.MappingType.Element);
 | |
|                 base.Columns.Add(this.columnselfTo);
 | |
|                 this.columnselfCC = new global::System.Data.DataColumn("selfCC", typeof(bool), null, global::System.Data.MappingType.Element);
 | |
|                 base.Columns.Add(this.columnselfCC);
 | |
|                 this.columnselfBCC = new global::System.Data.DataColumn("selfBCC", typeof(bool), null, global::System.Data.MappingType.Element);
 | |
|                 base.Columns.Add(this.columnselfBCC);
 | |
|                 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.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.columncate.MaxLength = 2;
 | |
|                 this.columntitle.MaxLength = 100;
 | |
|                 this.columntolist.MaxLength = 2147483647;
 | |
|                 this.columnbcc.MaxLength = 2147483647;
 | |
|                 this.columncc.MaxLength = 2147483647;
 | |
|                 this.columnsubject.MaxLength = 2147483647;
 | |
|                 this.columntail.MaxLength = 2147483647;
 | |
|                 this.columnbody.MaxLength = 2147483647;
 | |
|                 this.columnwuid.AllowDBNull = false;
 | |
|                 this.columnwuid.MaxLength = 20;
 | |
|                 this.columnwdate.AllowDBNull = false;
 | |
|             }
 | |
|             
 | |
|             [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
 | |
|             [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
 | |
|             public MailFormRow NewMailFormRow() {
 | |
|                 return ((MailFormRow)(this.NewRow()));
 | |
|             }
 | |
|             
 | |
|             [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
 | |
|             [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
 | |
|             protected override global::System.Data.DataRow NewRowFromBuilder(global::System.Data.DataRowBuilder builder) {
 | |
|                 return new MailFormRow(builder);
 | |
|             }
 | |
|             
 | |
|             [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
 | |
|             [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
 | |
|             protected override global::System.Type GetRowType() {
 | |
|                 return typeof(MailFormRow);
 | |
|             }
 | |
|             
 | |
|             [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
 | |
|             [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
 | |
|             protected override void OnRowChanged(global::System.Data.DataRowChangeEventArgs e) {
 | |
|                 base.OnRowChanged(e);
 | |
|                 if ((this.MailFormRowChanged != null)) {
 | |
|                     this.MailFormRowChanged(this, new MailFormRowChangeEvent(((MailFormRow)(e.Row)), e.Action));
 | |
|                 }
 | |
|             }
 | |
|             
 | |
|             [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
 | |
|             [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
 | |
|             protected override void OnRowChanging(global::System.Data.DataRowChangeEventArgs e) {
 | |
|                 base.OnRowChanging(e);
 | |
|                 if ((this.MailFormRowChanging != null)) {
 | |
|                     this.MailFormRowChanging(this, new MailFormRowChangeEvent(((MailFormRow)(e.Row)), e.Action));
 | |
|                 }
 | |
|             }
 | |
|             
 | |
|             [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
 | |
|             [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
 | |
|             protected override void OnRowDeleted(global::System.Data.DataRowChangeEventArgs e) {
 | |
|                 base.OnRowDeleted(e);
 | |
|                 if ((this.MailFormRowDeleted != null)) {
 | |
|                     this.MailFormRowDeleted(this, new MailFormRowChangeEvent(((MailFormRow)(e.Row)), e.Action));
 | |
|                 }
 | |
|             }
 | |
|             
 | |
|             [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
 | |
|             [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
 | |
|             protected override void OnRowDeleting(global::System.Data.DataRowChangeEventArgs e) {
 | |
|                 base.OnRowDeleting(e);
 | |
|                 if ((this.MailFormRowDeleting != null)) {
 | |
|                     this.MailFormRowDeleting(this, new MailFormRowChangeEvent(((MailFormRow)(e.Row)), e.Action));
 | |
|                 }
 | |
|             }
 | |
|             
 | |
|             [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
 | |
|             [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
 | |
|             public void RemoveMailFormRow(MailFormRow row) {
 | |
|                 this.Rows.Remove(row);
 | |
|             }
 | |
|             
 | |
|             [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
 | |
|             [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.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();
 | |
|                 DataSet1 ds = new DataSet1();
 | |
|                 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 = "MailFormDataTable";
 | |
|                 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;
 | |
|             }
 | |
|         }
 | |
|         
 | |
|         /// <summary>
 | |
|         ///Represents strongly named DataRow class.
 | |
|         ///</summary>
 | |
|         public partial class vMailingProjectScheduleRow : global::System.Data.DataRow {
 | |
|             
 | |
|             private vMailingProjectScheduleDataTable tablevMailingProjectSchedule;
 | |
|             
 | |
|             [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
 | |
|             [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
 | |
|             internal vMailingProjectScheduleRow(global::System.Data.DataRowBuilder rb) : 
 | |
|                     base(rb) {
 | |
|                 this.tablevMailingProjectSchedule = ((vMailingProjectScheduleDataTable)(this.Table));
 | |
|             }
 | |
|             
 | |
|             [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
 | |
|             [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
 | |
|             public int idx {
 | |
|                 get {
 | |
|                     return ((int)(this[this.tablevMailingProjectSchedule.idxColumn]));
 | |
|                 }
 | |
|                 set {
 | |
|                     this[this.tablevMailingProjectSchedule.idxColumn] = value;
 | |
|                 }
 | |
|             }
 | |
|             
 | |
|             [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
 | |
|             [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
 | |
|             public string pdate {
 | |
|                 get {
 | |
|                     if (this.IspdateNull()) {
 | |
|                         return string.Empty;
 | |
|                     }
 | |
|                     else {
 | |
|                         return ((string)(this[this.tablevMailingProjectSchedule.pdateColumn]));
 | |
|                     }
 | |
|                 }
 | |
|                 set {
 | |
|                     this[this.tablevMailingProjectSchedule.pdateColumn] = value;
 | |
|                 }
 | |
|             }
 | |
|             
 | |
|             [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
 | |
|             [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
 | |
|             public string name {
 | |
|                 get {
 | |
|                     if (this.IsnameNull()) {
 | |
|                         return string.Empty;
 | |
|                     }
 | |
|                     else {
 | |
|                         return ((string)(this[this.tablevMailingProjectSchedule.nameColumn]));
 | |
|                     }
 | |
|                 }
 | |
|                 set {
 | |
|                     this[this.tablevMailingProjectSchedule.nameColumn] = value;
 | |
|                 }
 | |
|             }
 | |
|             
 | |
|             [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
 | |
|             [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
 | |
|             public string userManager {
 | |
|                 get {
 | |
|                     if (this.IsuserManagerNull()) {
 | |
|                         return string.Empty;
 | |
|                     }
 | |
|                     else {
 | |
|                         return ((string)(this[this.tablevMailingProjectSchedule.userManagerColumn]));
 | |
|                     }
 | |
|                 }
 | |
|                 set {
 | |
|                     this[this.tablevMailingProjectSchedule.userManagerColumn] = value;
 | |
|                 }
 | |
|             }
 | |
|             
 | |
|             [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
 | |
|             [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
 | |
|             public int seq {
 | |
|                 get {
 | |
|                     if (this.IsseqNull()) {
 | |
|                         return 0;
 | |
|                     }
 | |
|                     else {
 | |
|                         return ((int)(this[this.tablevMailingProjectSchedule.seqColumn]));
 | |
|                     }
 | |
|                 }
 | |
|                 set {
 | |
|                     this[this.tablevMailingProjectSchedule.seqColumn] = value;
 | |
|                 }
 | |
|             }
 | |
|             
 | |
|             [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
 | |
|             [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
 | |
|             public string title {
 | |
|                 get {
 | |
|                     if (this.IstitleNull()) {
 | |
|                         return string.Empty;
 | |
|                     }
 | |
|                     else {
 | |
|                         return ((string)(this[this.tablevMailingProjectSchedule.titleColumn]));
 | |
|                     }
 | |
|                 }
 | |
|                 set {
 | |
|                     this[this.tablevMailingProjectSchedule.titleColumn] = value;
 | |
|                 }
 | |
|             }
 | |
|             
 | |
|             [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
 | |
|             [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
 | |
|             public int sw {
 | |
|                 get {
 | |
|                     if (this.IsswNull()) {
 | |
|                         return 0;
 | |
|                     }
 | |
|                     else {
 | |
|                         return ((int)(this[this.tablevMailingProjectSchedule.swColumn]));
 | |
|                     }
 | |
|                 }
 | |
|                 set {
 | |
|                     this[this.tablevMailingProjectSchedule.swColumn] = value;
 | |
|                 }
 | |
|             }
 | |
|             
 | |
|             [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
 | |
|             [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
 | |
|             public int ew {
 | |
|                 get {
 | |
|                     if (this.IsewNull()) {
 | |
|                         return 0;
 | |
|                     }
 | |
|                     else {
 | |
|                         return ((int)(this[this.tablevMailingProjectSchedule.ewColumn]));
 | |
|                     }
 | |
|                 }
 | |
|                 set {
 | |
|                     this[this.tablevMailingProjectSchedule.ewColumn] = value;
 | |
|                 }
 | |
|             }
 | |
|             
 | |
|             [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
 | |
|             [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
 | |
|             public int swa {
 | |
|                 get {
 | |
|                     if (this.IsswaNull()) {
 | |
|                         return 0;
 | |
|                     }
 | |
|                     else {
 | |
|                         return ((int)(this[this.tablevMailingProjectSchedule.swaColumn]));
 | |
|                     }
 | |
|                 }
 | |
|                 set {
 | |
|                     this[this.tablevMailingProjectSchedule.swaColumn] = value;
 | |
|                 }
 | |
|             }
 | |
|             
 | |
|             [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
 | |
|             [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
 | |
|             public int progress {
 | |
|                 get {
 | |
|                     if (this.IsprogressNull()) {
 | |
|                         return 0;
 | |
|                     }
 | |
|                     else {
 | |
|                         return ((int)(this[this.tablevMailingProjectSchedule.progressColumn]));
 | |
|                     }
 | |
|                 }
 | |
|                 set {
 | |
|                     this[this.tablevMailingProjectSchedule.progressColumn] = value;
 | |
|                 }
 | |
|             }
 | |
|             
 | |
|             [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
 | |
|             [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
 | |
|             public int ewa {
 | |
|                 get {
 | |
|                     if (this.IsewaNull()) {
 | |
|                         return 0;
 | |
|                     }
 | |
|                     else {
 | |
|                         return ((int)(this[this.tablevMailingProjectSchedule.ewaColumn]));
 | |
|                     }
 | |
|                 }
 | |
|                 set {
 | |
|                     this[this.tablevMailingProjectSchedule.ewaColumn] = value;
 | |
|                 }
 | |
|             }
 | |
|             
 | |
|             [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
 | |
|             [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
 | |
|             public int ww {
 | |
|                 get {
 | |
|                     if (this.IswwNull()) {
 | |
|                         return 0;
 | |
|                     }
 | |
|                     else {
 | |
|                         return ((int)(this[this.tablevMailingProjectSchedule.wwColumn]));
 | |
|                     }
 | |
|                 }
 | |
|                 set {
 | |
|                     this[this.tablevMailingProjectSchedule.wwColumn] = value;
 | |
|                 }
 | |
|             }
 | |
|             
 | |
|             [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
 | |
|             [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
 | |
|             public string memo {
 | |
|                 get {
 | |
|                     if (this.IsmemoNull()) {
 | |
|                         return string.Empty;
 | |
|                     }
 | |
|                     else {
 | |
|                         return ((string)(this[this.tablevMailingProjectSchedule.memoColumn]));
 | |
|                     }
 | |
|                 }
 | |
|                 set {
 | |
|                     this[this.tablevMailingProjectSchedule.memoColumn] = value;
 | |
|                 }
 | |
|             }
 | |
|             
 | |
|             [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
 | |
|             [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
 | |
|             public int sidx {
 | |
|                 get {
 | |
|                     return ((int)(this[this.tablevMailingProjectSchedule.sidxColumn]));
 | |
|                 }
 | |
|                 set {
 | |
|                     this[this.tablevMailingProjectSchedule.sidxColumn] = value;
 | |
|                 }
 | |
|             }
 | |
|             
 | |
|             [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
 | |
|             [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
 | |
|             public bool IspdateNull() {
 | |
|                 return this.IsNull(this.tablevMailingProjectSchedule.pdateColumn);
 | |
|             }
 | |
|             
 | |
|             [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
 | |
|             [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
 | |
|             public void SetpdateNull() {
 | |
|                 this[this.tablevMailingProjectSchedule.pdateColumn] = global::System.Convert.DBNull;
 | |
|             }
 | |
|             
 | |
|             [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
 | |
|             [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
 | |
|             public bool IsnameNull() {
 | |
|                 return this.IsNull(this.tablevMailingProjectSchedule.nameColumn);
 | |
|             }
 | |
|             
 | |
|             [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
 | |
|             [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
 | |
|             public void SetnameNull() {
 | |
|                 this[this.tablevMailingProjectSchedule.nameColumn] = global::System.Convert.DBNull;
 | |
|             }
 | |
|             
 | |
|             [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
 | |
|             [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
 | |
|             public bool IsuserManagerNull() {
 | |
|                 return this.IsNull(this.tablevMailingProjectSchedule.userManagerColumn);
 | |
|             }
 | |
|             
 | |
|             [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
 | |
|             [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
 | |
|             public void SetuserManagerNull() {
 | |
|                 this[this.tablevMailingProjectSchedule.userManagerColumn] = global::System.Convert.DBNull;
 | |
|             }
 | |
|             
 | |
|             [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
 | |
|             [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
 | |
|             public bool IsseqNull() {
 | |
|                 return this.IsNull(this.tablevMailingProjectSchedule.seqColumn);
 | |
|             }
 | |
|             
 | |
|             [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
 | |
|             [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
 | |
|             public void SetseqNull() {
 | |
|                 this[this.tablevMailingProjectSchedule.seqColumn] = global::System.Convert.DBNull;
 | |
|             }
 | |
|             
 | |
|             [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
 | |
|             [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
 | |
|             public bool IstitleNull() {
 | |
|                 return this.IsNull(this.tablevMailingProjectSchedule.titleColumn);
 | |
|             }
 | |
|             
 | |
|             [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
 | |
|             [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
 | |
|             public void SettitleNull() {
 | |
|                 this[this.tablevMailingProjectSchedule.titleColumn] = global::System.Convert.DBNull;
 | |
|             }
 | |
|             
 | |
|             [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
 | |
|             [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
 | |
|             public bool IsswNull() {
 | |
|                 return this.IsNull(this.tablevMailingProjectSchedule.swColumn);
 | |
|             }
 | |
|             
 | |
|             [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
 | |
|             [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
 | |
|             public void SetswNull() {
 | |
|                 this[this.tablevMailingProjectSchedule.swColumn] = global::System.Convert.DBNull;
 | |
|             }
 | |
|             
 | |
|             [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
 | |
|             [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
 | |
|             public bool IsewNull() {
 | |
|                 return this.IsNull(this.tablevMailingProjectSchedule.ewColumn);
 | |
|             }
 | |
|             
 | |
|             [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
 | |
|             [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
 | |
|             public void SetewNull() {
 | |
|                 this[this.tablevMailingProjectSchedule.ewColumn] = global::System.Convert.DBNull;
 | |
|             }
 | |
|             
 | |
|             [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
 | |
|             [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
 | |
|             public bool IsswaNull() {
 | |
|                 return this.IsNull(this.tablevMailingProjectSchedule.swaColumn);
 | |
|             }
 | |
|             
 | |
|             [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
 | |
|             [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
 | |
|             public void SetswaNull() {
 | |
|                 this[this.tablevMailingProjectSchedule.swaColumn] = global::System.Convert.DBNull;
 | |
|             }
 | |
|             
 | |
|             [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
 | |
|             [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
 | |
|             public bool IsprogressNull() {
 | |
|                 return this.IsNull(this.tablevMailingProjectSchedule.progressColumn);
 | |
|             }
 | |
|             
 | |
|             [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
 | |
|             [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
 | |
|             public void SetprogressNull() {
 | |
|                 this[this.tablevMailingProjectSchedule.progressColumn] = global::System.Convert.DBNull;
 | |
|             }
 | |
|             
 | |
|             [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
 | |
|             [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
 | |
|             public bool IsewaNull() {
 | |
|                 return this.IsNull(this.tablevMailingProjectSchedule.ewaColumn);
 | |
|             }
 | |
|             
 | |
|             [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
 | |
|             [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
 | |
|             public void SetewaNull() {
 | |
|                 this[this.tablevMailingProjectSchedule.ewaColumn] = global::System.Convert.DBNull;
 | |
|             }
 | |
|             
 | |
|             [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
 | |
|             [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
 | |
|             public bool IswwNull() {
 | |
|                 return this.IsNull(this.tablevMailingProjectSchedule.wwColumn);
 | |
|             }
 | |
|             
 | |
|             [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
 | |
|             [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
 | |
|             public void SetwwNull() {
 | |
|                 this[this.tablevMailingProjectSchedule.wwColumn] = global::System.Convert.DBNull;
 | |
|             }
 | |
|             
 | |
|             [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
 | |
|             [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
 | |
|             public bool IsmemoNull() {
 | |
|                 return this.IsNull(this.tablevMailingProjectSchedule.memoColumn);
 | |
|             }
 | |
|             
 | |
|             [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
 | |
|             [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
 | |
|             public void SetmemoNull() {
 | |
|                 this[this.tablevMailingProjectSchedule.memoColumn] = global::System.Convert.DBNull;
 | |
|             }
 | |
|         }
 | |
|         
 | |
|         /// <summary>
 | |
|         ///Represents strongly named DataRow class.
 | |
|         ///</summary>
 | |
|         public partial class MailAutoRow : global::System.Data.DataRow {
 | |
|             
 | |
|             private MailAutoDataTable tableMailAuto;
 | |
|             
 | |
|             [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
 | |
|             [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
 | |
|             internal MailAutoRow(global::System.Data.DataRowBuilder rb) : 
 | |
|                     base(rb) {
 | |
|                 this.tableMailAuto = ((MailAutoDataTable)(this.Table));
 | |
|             }
 | |
|             
 | |
|             [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
 | |
|             [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
 | |
|             public int idx {
 | |
|                 get {
 | |
|                     return ((int)(this[this.tableMailAuto.idxColumn]));
 | |
|                 }
 | |
|                 set {
 | |
|                     this[this.tableMailAuto.idxColumn] = value;
 | |
|                 }
 | |
|             }
 | |
|             
 | |
|             [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
 | |
|             [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
 | |
|             public bool enable {
 | |
|                 get {
 | |
|                     if (this.IsenableNull()) {
 | |
|                         return false;
 | |
|                     }
 | |
|                     else {
 | |
|                         return ((bool)(this[this.tableMailAuto.enableColumn]));
 | |
|                     }
 | |
|                 }
 | |
|                 set {
 | |
|                     this[this.tableMailAuto.enableColumn] = value;
 | |
|                 }
 | |
|             }
 | |
|             
 | |
|             [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
 | |
|             [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
 | |
|             public int fidx {
 | |
|                 get {
 | |
|                     return ((int)(this[this.tableMailAuto.fidxColumn]));
 | |
|                 }
 | |
|                 set {
 | |
|                     this[this.tableMailAuto.fidxColumn] = value;
 | |
|                 }
 | |
|             }
 | |
|             
 | |
|             [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
 | |
|             [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
 | |
|             public string gcode {
 | |
|                 get {
 | |
|                     return ((string)(this[this.tableMailAuto.gcodeColumn]));
 | |
|                 }
 | |
|                 set {
 | |
|                     this[this.tableMailAuto.gcodeColumn] = value;
 | |
|                 }
 | |
|             }
 | |
|             
 | |
|             [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
 | |
|             [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
 | |
|             public string tolist {
 | |
|                 get {
 | |
|                     if (this.IstolistNull()) {
 | |
|                         return string.Empty;
 | |
|                     }
 | |
|                     else {
 | |
|                         return ((string)(this[this.tableMailAuto.tolistColumn]));
 | |
|                     }
 | |
|                 }
 | |
|                 set {
 | |
|                     this[this.tableMailAuto.tolistColumn] = value;
 | |
|                 }
 | |
|             }
 | |
|             
 | |
|             [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
 | |
|             [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
 | |
|             public string bcc {
 | |
|                 get {
 | |
|                     if (this.IsbccNull()) {
 | |
|                         return string.Empty;
 | |
|                     }
 | |
|                     else {
 | |
|                         return ((string)(this[this.tableMailAuto.bccColumn]));
 | |
|                     }
 | |
|                 }
 | |
|                 set {
 | |
|                     this[this.tableMailAuto.bccColumn] = value;
 | |
|                 }
 | |
|             }
 | |
|             
 | |
|             [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
 | |
|             [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
 | |
|             public string cc {
 | |
|                 get {
 | |
|                     if (this.IsccNull()) {
 | |
|                         return string.Empty;
 | |
|                     }
 | |
|                     else {
 | |
|                         return ((string)(this[this.tableMailAuto.ccColumn]));
 | |
|                     }
 | |
|                 }
 | |
|                 set {
 | |
|                     this[this.tableMailAuto.ccColumn] = value;
 | |
|                 }
 | |
|             }
 | |
|             
 | |
|             [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
 | |
|             [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
 | |
|             public string sdate {
 | |
|                 get {
 | |
|                     if (this.IssdateNull()) {
 | |
|                         return string.Empty;
 | |
|                     }
 | |
|                     else {
 | |
|                         return ((string)(this[this.tableMailAuto.sdateColumn]));
 | |
|                     }
 | |
|                 }
 | |
|                 set {
 | |
|                     this[this.tableMailAuto.sdateColumn] = value;
 | |
|                 }
 | |
|             }
 | |
|             
 | |
|             [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
 | |
|             [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
 | |
|             public string edate {
 | |
|                 get {
 | |
|                     if (this.IsedateNull()) {
 | |
|                         return string.Empty;
 | |
|                     }
 | |
|                     else {
 | |
|                         return ((string)(this[this.tableMailAuto.edateColumn]));
 | |
|                     }
 | |
|                 }
 | |
|                 set {
 | |
|                     this[this.tableMailAuto.edateColumn] = value;
 | |
|                 }
 | |
|             }
 | |
|             
 | |
|             [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
 | |
|             [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
 | |
|             public string stime {
 | |
|                 get {
 | |
|                     if (this.IsstimeNull()) {
 | |
|                         return string.Empty;
 | |
|                     }
 | |
|                     else {
 | |
|                         return ((string)(this[this.tableMailAuto.stimeColumn]));
 | |
|                     }
 | |
|                 }
 | |
|                 set {
 | |
|                     this[this.tableMailAuto.stimeColumn] = value;
 | |
|                 }
 | |
|             }
 | |
|             
 | |
|             [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
 | |
|             [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
 | |
|             public byte[] sday {
 | |
|                 get {
 | |
|                     try {
 | |
|                         return ((byte[])(this[this.tableMailAuto.sdayColumn]));
 | |
|                     }
 | |
|                     catch (global::System.InvalidCastException e) {
 | |
|                         throw new global::System.Data.StrongTypingException("\'MailAuto\' 테이블의 \'sday\' 열의 값이 DBNull입니다.", e);
 | |
|                     }
 | |
|                 }
 | |
|                 set {
 | |
|                     this[this.tableMailAuto.sdayColumn] = value;
 | |
|                 }
 | |
|             }
 | |
|             
 | |
|             [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
 | |
|             [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
 | |
|             public string wuid {
 | |
|                 get {
 | |
|                     return ((string)(this[this.tableMailAuto.wuidColumn]));
 | |
|                 }
 | |
|                 set {
 | |
|                     this[this.tableMailAuto.wuidColumn] = value;
 | |
|                 }
 | |
|             }
 | |
|             
 | |
|             [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
 | |
|             [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
 | |
|             public System.DateTime wdate {
 | |
|                 get {
 | |
|                     return ((global::System.DateTime)(this[this.tableMailAuto.wdateColumn]));
 | |
|                 }
 | |
|                 set {
 | |
|                     this[this.tableMailAuto.wdateColumn] = value;
 | |
|                 }
 | |
|             }
 | |
|             
 | |
|             [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
 | |
|             [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
 | |
|             public string fromlist {
 | |
|                 get {
 | |
|                     if (this.IsfromlistNull()) {
 | |
|                         return string.Empty;
 | |
|                     }
 | |
|                     else {
 | |
|                         return ((string)(this[this.tableMailAuto.fromlistColumn]));
 | |
|                     }
 | |
|                 }
 | |
|                 set {
 | |
|                     this[this.tableMailAuto.fromlistColumn] = value;
 | |
|                 }
 | |
|             }
 | |
|             
 | |
|             [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
 | |
|             [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
 | |
|             public string subject {
 | |
|                 get {
 | |
|                     if (this.IssubjectNull()) {
 | |
|                         return string.Empty;
 | |
|                     }
 | |
|                     else {
 | |
|                         return ((string)(this[this.tableMailAuto.subjectColumn]));
 | |
|                     }
 | |
|                 }
 | |
|                 set {
 | |
|                     this[this.tableMailAuto.subjectColumn] = value;
 | |
|                 }
 | |
|             }
 | |
|             
 | |
|             [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
 | |
|             [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
 | |
|             public string body {
 | |
|                 get {
 | |
|                     if (this.IsbodyNull()) {
 | |
|                         return string.Empty;
 | |
|                     }
 | |
|                     else {
 | |
|                         return ((string)(this[this.tableMailAuto.bodyColumn]));
 | |
|                     }
 | |
|                 }
 | |
|                 set {
 | |
|                     this[this.tableMailAuto.bodyColumn] = value;
 | |
|                 }
 | |
|             }
 | |
|             
 | |
|             [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
 | |
|             [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
 | |
|             public bool IsenableNull() {
 | |
|                 return this.IsNull(this.tableMailAuto.enableColumn);
 | |
|             }
 | |
|             
 | |
|             [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
 | |
|             [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
 | |
|             public void SetenableNull() {
 | |
|                 this[this.tableMailAuto.enableColumn] = global::System.Convert.DBNull;
 | |
|             }
 | |
|             
 | |
|             [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
 | |
|             [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
 | |
|             public bool IstolistNull() {
 | |
|                 return this.IsNull(this.tableMailAuto.tolistColumn);
 | |
|             }
 | |
|             
 | |
|             [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
 | |
|             [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
 | |
|             public void SettolistNull() {
 | |
|                 this[this.tableMailAuto.tolistColumn] = global::System.Convert.DBNull;
 | |
|             }
 | |
|             
 | |
|             [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
 | |
|             [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
 | |
|             public bool IsbccNull() {
 | |
|                 return this.IsNull(this.tableMailAuto.bccColumn);
 | |
|             }
 | |
|             
 | |
|             [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
 | |
|             [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
 | |
|             public void SetbccNull() {
 | |
|                 this[this.tableMailAuto.bccColumn] = global::System.Convert.DBNull;
 | |
|             }
 | |
|             
 | |
|             [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
 | |
|             [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
 | |
|             public bool IsccNull() {
 | |
|                 return this.IsNull(this.tableMailAuto.ccColumn);
 | |
|             }
 | |
|             
 | |
|             [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
 | |
|             [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
 | |
|             public void SetccNull() {
 | |
|                 this[this.tableMailAuto.ccColumn] = global::System.Convert.DBNull;
 | |
|             }
 | |
|             
 | |
|             [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
 | |
|             [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
 | |
|             public bool IssdateNull() {
 | |
|                 return this.IsNull(this.tableMailAuto.sdateColumn);
 | |
|             }
 | |
|             
 | |
|             [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
 | |
|             [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
 | |
|             public void SetsdateNull() {
 | |
|                 this[this.tableMailAuto.sdateColumn] = global::System.Convert.DBNull;
 | |
|             }
 | |
|             
 | |
|             [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
 | |
|             [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
 | |
|             public bool IsedateNull() {
 | |
|                 return this.IsNull(this.tableMailAuto.edateColumn);
 | |
|             }
 | |
|             
 | |
|             [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
 | |
|             [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
 | |
|             public void SetedateNull() {
 | |
|                 this[this.tableMailAuto.edateColumn] = global::System.Convert.DBNull;
 | |
|             }
 | |
|             
 | |
|             [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
 | |
|             [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
 | |
|             public bool IsstimeNull() {
 | |
|                 return this.IsNull(this.tableMailAuto.stimeColumn);
 | |
|             }
 | |
|             
 | |
|             [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
 | |
|             [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
 | |
|             public void SetstimeNull() {
 | |
|                 this[this.tableMailAuto.stimeColumn] = global::System.Convert.DBNull;
 | |
|             }
 | |
|             
 | |
|             [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
 | |
|             [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
 | |
|             public bool IssdayNull() {
 | |
|                 return this.IsNull(this.tableMailAuto.sdayColumn);
 | |
|             }
 | |
|             
 | |
|             [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
 | |
|             [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
 | |
|             public void SetsdayNull() {
 | |
|                 this[this.tableMailAuto.sdayColumn] = global::System.Convert.DBNull;
 | |
|             }
 | |
|             
 | |
|             [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
 | |
|             [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
 | |
|             public bool IsfromlistNull() {
 | |
|                 return this.IsNull(this.tableMailAuto.fromlistColumn);
 | |
|             }
 | |
|             
 | |
|             [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
 | |
|             [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
 | |
|             public void SetfromlistNull() {
 | |
|                 this[this.tableMailAuto.fromlistColumn] = global::System.Convert.DBNull;
 | |
|             }
 | |
|             
 | |
|             [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
 | |
|             [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
 | |
|             public bool IssubjectNull() {
 | |
|                 return this.IsNull(this.tableMailAuto.subjectColumn);
 | |
|             }
 | |
|             
 | |
|             [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
 | |
|             [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
 | |
|             public void SetsubjectNull() {
 | |
|                 this[this.tableMailAuto.subjectColumn] = global::System.Convert.DBNull;
 | |
|             }
 | |
|             
 | |
|             [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
 | |
|             [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
 | |
|             public bool IsbodyNull() {
 | |
|                 return this.IsNull(this.tableMailAuto.bodyColumn);
 | |
|             }
 | |
|             
 | |
|             [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
 | |
|             [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
 | |
|             public void SetbodyNull() {
 | |
|                 this[this.tableMailAuto.bodyColumn] = global::System.Convert.DBNull;
 | |
|             }
 | |
|         }
 | |
|         
 | |
|         /// <summary>
 | |
|         ///Represents strongly named DataRow class.
 | |
|         ///</summary>
 | |
|         public partial class MailDataRow : global::System.Data.DataRow {
 | |
|             
 | |
|             private MailDataDataTable tableMailData;
 | |
|             
 | |
|             [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
 | |
|             [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
 | |
|             internal MailDataRow(global::System.Data.DataRowBuilder rb) : 
 | |
|                     base(rb) {
 | |
|                 this.tableMailData = ((MailDataDataTable)(this.Table));
 | |
|             }
 | |
|             
 | |
|             [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
 | |
|             [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
 | |
|             public int idx {
 | |
|                 get {
 | |
|                     return ((int)(this[this.tableMailData.idxColumn]));
 | |
|                 }
 | |
|                 set {
 | |
|                     this[this.tableMailData.idxColumn] = value;
 | |
|                 }
 | |
|             }
 | |
|             
 | |
|             [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
 | |
|             [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
 | |
|             public int project {
 | |
|                 get {
 | |
|                     if (this.IsprojectNull()) {
 | |
|                         return -1;
 | |
|                     }
 | |
|                     else {
 | |
|                         return ((int)(this[this.tableMailData.projectColumn]));
 | |
|                     }
 | |
|                 }
 | |
|                 set {
 | |
|                     this[this.tableMailData.projectColumn] = value;
 | |
|                 }
 | |
|             }
 | |
|             
 | |
|             [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
 | |
|             [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
 | |
|             public string gcode {
 | |
|                 get {
 | |
|                     return ((string)(this[this.tableMailData.gcodeColumn]));
 | |
|                 }
 | |
|                 set {
 | |
|                     this[this.tableMailData.gcodeColumn] = value;
 | |
|                 }
 | |
|             }
 | |
|             
 | |
|             [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
 | |
|             [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
 | |
|             public string cate {
 | |
|                 get {
 | |
|                     if (this.IscateNull()) {
 | |
|                         return string.Empty;
 | |
|                     }
 | |
|                     else {
 | |
|                         return ((string)(this[this.tableMailData.cateColumn]));
 | |
|                     }
 | |
|                 }
 | |
|                 set {
 | |
|                     this[this.tableMailData.cateColumn] = value;
 | |
|                 }
 | |
|             }
 | |
|             
 | |
|             [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
 | |
|             [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
 | |
|             public string pdate {
 | |
|                 get {
 | |
|                     if (this.IspdateNull()) {
 | |
|                         return string.Empty;
 | |
|                     }
 | |
|                     else {
 | |
|                         return ((string)(this[this.tableMailData.pdateColumn]));
 | |
|                     }
 | |
|                 }
 | |
|                 set {
 | |
|                     this[this.tableMailData.pdateColumn] = value;
 | |
|                 }
 | |
|             }
 | |
|             
 | |
|             [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
 | |
|             [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
 | |
|             public string subject {
 | |
|                 get {
 | |
|                     if (this.IssubjectNull()) {
 | |
|                         return string.Empty;
 | |
|                     }
 | |
|                     else {
 | |
|                         return ((string)(this[this.tableMailData.subjectColumn]));
 | |
|                     }
 | |
|                 }
 | |
|                 set {
 | |
|                     this[this.tableMailData.subjectColumn] = value;
 | |
|                 }
 | |
|             }
 | |
|             
 | |
|             [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
 | |
|             [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
 | |
|             public string tolist {
 | |
|                 get {
 | |
|                     if (this.IstolistNull()) {
 | |
|                         return string.Empty;
 | |
|                     }
 | |
|                     else {
 | |
|                         return ((string)(this[this.tableMailData.tolistColumn]));
 | |
|                     }
 | |
|                 }
 | |
|                 set {
 | |
|                     this[this.tableMailData.tolistColumn] = value;
 | |
|                 }
 | |
|             }
 | |
|             
 | |
|             [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
 | |
|             [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
 | |
|             public string bcc {
 | |
|                 get {
 | |
|                     if (this.IsbccNull()) {
 | |
|                         return string.Empty;
 | |
|                     }
 | |
|                     else {
 | |
|                         return ((string)(this[this.tableMailData.bccColumn]));
 | |
|                     }
 | |
|                 }
 | |
|                 set {
 | |
|                     this[this.tableMailData.bccColumn] = value;
 | |
|                 }
 | |
|             }
 | |
|             
 | |
|             [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
 | |
|             [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
 | |
|             public string cc {
 | |
|                 get {
 | |
|                     if (this.IsccNull()) {
 | |
|                         return string.Empty;
 | |
|                     }
 | |
|                     else {
 | |
|                         return ((string)(this[this.tableMailData.ccColumn]));
 | |
|                     }
 | |
|                 }
 | |
|                 set {
 | |
|                     this[this.tableMailData.ccColumn] = value;
 | |
|                 }
 | |
|             }
 | |
|             
 | |
|             [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
 | |
|             [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
 | |
|             public string body {
 | |
|                 get {
 | |
|                     if (this.IsbodyNull()) {
 | |
|                         return string.Empty;
 | |
|                     }
 | |
|                     else {
 | |
|                         return ((string)(this[this.tableMailData.bodyColumn]));
 | |
|                     }
 | |
|                 }
 | |
|                 set {
 | |
|                     this[this.tableMailData.bodyColumn] = value;
 | |
|                 }
 | |
|             }
 | |
|             
 | |
|             [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
 | |
|             [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
 | |
|             public bool SendOK {
 | |
|                 get {
 | |
|                     if (this.IsSendOKNull()) {
 | |
|                         return false;
 | |
|                     }
 | |
|                     else {
 | |
|                         return ((bool)(this[this.tableMailData.SendOKColumn]));
 | |
|                     }
 | |
|                 }
 | |
|                 set {
 | |
|                     this[this.tableMailData.SendOKColumn] = value;
 | |
|                 }
 | |
|             }
 | |
|             
 | |
|             [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
 | |
|             [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
 | |
|             public string SendMsg {
 | |
|                 get {
 | |
|                     if (this.IsSendMsgNull()) {
 | |
|                         return string.Empty;
 | |
|                     }
 | |
|                     else {
 | |
|                         return ((string)(this[this.tableMailData.SendMsgColumn]));
 | |
|                     }
 | |
|                 }
 | |
|                 set {
 | |
|                     this[this.tableMailData.SendMsgColumn] = value;
 | |
|                 }
 | |
|             }
 | |
|             
 | |
|             [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
 | |
|             [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
 | |
|             public int aidx {
 | |
|                 get {
 | |
|                     if (this.IsaidxNull()) {
 | |
|                         return -1;
 | |
|                     }
 | |
|                     else {
 | |
|                         return ((int)(this[this.tableMailData.aidxColumn]));
 | |
|                     }
 | |
|                 }
 | |
|                 set {
 | |
|                     this[this.tableMailData.aidxColumn] = value;
 | |
|                 }
 | |
|             }
 | |
|             
 | |
|             [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
 | |
|             [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
 | |
|             public string atime {
 | |
|                 get {
 | |
|                     if (this.IsatimeNull()) {
 | |
|                         return string.Empty;
 | |
|                     }
 | |
|                     else {
 | |
|                         return ((string)(this[this.tableMailData.atimeColumn]));
 | |
|                     }
 | |
|                 }
 | |
|                 set {
 | |
|                     this[this.tableMailData.atimeColumn] = value;
 | |
|                 }
 | |
|             }
 | |
|             
 | |
|             [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
 | |
|             [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
 | |
|             public string wuid {
 | |
|                 get {
 | |
|                     return ((string)(this[this.tableMailData.wuidColumn]));
 | |
|                 }
 | |
|                 set {
 | |
|                     this[this.tableMailData.wuidColumn] = value;
 | |
|                 }
 | |
|             }
 | |
|             
 | |
|             [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
 | |
|             [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
 | |
|             public System.DateTime wdate {
 | |
|                 get {
 | |
|                     return ((global::System.DateTime)(this[this.tableMailData.wdateColumn]));
 | |
|                 }
 | |
|                 set {
 | |
|                     this[this.tableMailData.wdateColumn] = value;
 | |
|                 }
 | |
|             }
 | |
|             
 | |
|             [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
 | |
|             [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
 | |
|             public string fromlist {
 | |
|                 get {
 | |
|                     if (this.IsfromlistNull()) {
 | |
|                         return string.Empty;
 | |
|                     }
 | |
|                     else {
 | |
|                         return ((string)(this[this.tableMailData.fromlistColumn]));
 | |
|                     }
 | |
|                 }
 | |
|                 set {
 | |
|                     this[this.tableMailData.fromlistColumn] = value;
 | |
|                 }
 | |
|             }
 | |
|             
 | |
|             [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
 | |
|             [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
 | |
|             public bool IsprojectNull() {
 | |
|                 return this.IsNull(this.tableMailData.projectColumn);
 | |
|             }
 | |
|             
 | |
|             [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
 | |
|             [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
 | |
|             public void SetprojectNull() {
 | |
|                 this[this.tableMailData.projectColumn] = global::System.Convert.DBNull;
 | |
|             }
 | |
|             
 | |
|             [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
 | |
|             [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
 | |
|             public bool IscateNull() {
 | |
|                 return this.IsNull(this.tableMailData.cateColumn);
 | |
|             }
 | |
|             
 | |
|             [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
 | |
|             [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
 | |
|             public void SetcateNull() {
 | |
|                 this[this.tableMailData.cateColumn] = global::System.Convert.DBNull;
 | |
|             }
 | |
|             
 | |
|             [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
 | |
|             [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
 | |
|             public bool IspdateNull() {
 | |
|                 return this.IsNull(this.tableMailData.pdateColumn);
 | |
|             }
 | |
|             
 | |
|             [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
 | |
|             [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
 | |
|             public void SetpdateNull() {
 | |
|                 this[this.tableMailData.pdateColumn] = global::System.Convert.DBNull;
 | |
|             }
 | |
|             
 | |
|             [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
 | |
|             [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
 | |
|             public bool IssubjectNull() {
 | |
|                 return this.IsNull(this.tableMailData.subjectColumn);
 | |
|             }
 | |
|             
 | |
|             [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
 | |
|             [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
 | |
|             public void SetsubjectNull() {
 | |
|                 this[this.tableMailData.subjectColumn] = global::System.Convert.DBNull;
 | |
|             }
 | |
|             
 | |
|             [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
 | |
|             [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
 | |
|             public bool IstolistNull() {
 | |
|                 return this.IsNull(this.tableMailData.tolistColumn);
 | |
|             }
 | |
|             
 | |
|             [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
 | |
|             [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
 | |
|             public void SettolistNull() {
 | |
|                 this[this.tableMailData.tolistColumn] = global::System.Convert.DBNull;
 | |
|             }
 | |
|             
 | |
|             [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
 | |
|             [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
 | |
|             public bool IsbccNull() {
 | |
|                 return this.IsNull(this.tableMailData.bccColumn);
 | |
|             }
 | |
|             
 | |
|             [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
 | |
|             [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
 | |
|             public void SetbccNull() {
 | |
|                 this[this.tableMailData.bccColumn] = global::System.Convert.DBNull;
 | |
|             }
 | |
|             
 | |
|             [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
 | |
|             [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
 | |
|             public bool IsccNull() {
 | |
|                 return this.IsNull(this.tableMailData.ccColumn);
 | |
|             }
 | |
|             
 | |
|             [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
 | |
|             [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
 | |
|             public void SetccNull() {
 | |
|                 this[this.tableMailData.ccColumn] = global::System.Convert.DBNull;
 | |
|             }
 | |
|             
 | |
|             [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
 | |
|             [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
 | |
|             public bool IsbodyNull() {
 | |
|                 return this.IsNull(this.tableMailData.bodyColumn);
 | |
|             }
 | |
|             
 | |
|             [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
 | |
|             [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
 | |
|             public void SetbodyNull() {
 | |
|                 this[this.tableMailData.bodyColumn] = global::System.Convert.DBNull;
 | |
|             }
 | |
|             
 | |
|             [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
 | |
|             [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
 | |
|             public bool IsSendOKNull() {
 | |
|                 return this.IsNull(this.tableMailData.SendOKColumn);
 | |
|             }
 | |
|             
 | |
|             [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
 | |
|             [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
 | |
|             public void SetSendOKNull() {
 | |
|                 this[this.tableMailData.SendOKColumn] = global::System.Convert.DBNull;
 | |
|             }
 | |
|             
 | |
|             [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
 | |
|             [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
 | |
|             public bool IsSendMsgNull() {
 | |
|                 return this.IsNull(this.tableMailData.SendMsgColumn);
 | |
|             }
 | |
|             
 | |
|             [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
 | |
|             [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
 | |
|             public void SetSendMsgNull() {
 | |
|                 this[this.tableMailData.SendMsgColumn] = global::System.Convert.DBNull;
 | |
|             }
 | |
|             
 | |
|             [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
 | |
|             [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
 | |
|             public bool IsaidxNull() {
 | |
|                 return this.IsNull(this.tableMailData.aidxColumn);
 | |
|             }
 | |
|             
 | |
|             [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
 | |
|             [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
 | |
|             public void SetaidxNull() {
 | |
|                 this[this.tableMailData.aidxColumn] = global::System.Convert.DBNull;
 | |
|             }
 | |
|             
 | |
|             [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
 | |
|             [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
 | |
|             public bool IsatimeNull() {
 | |
|                 return this.IsNull(this.tableMailData.atimeColumn);
 | |
|             }
 | |
|             
 | |
|             [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
 | |
|             [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
 | |
|             public void SetatimeNull() {
 | |
|                 this[this.tableMailData.atimeColumn] = global::System.Convert.DBNull;
 | |
|             }
 | |
|             
 | |
|             [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
 | |
|             [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
 | |
|             public bool IsfromlistNull() {
 | |
|                 return this.IsNull(this.tableMailData.fromlistColumn);
 | |
|             }
 | |
|             
 | |
|             [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
 | |
|             [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
 | |
|             public void SetfromlistNull() {
 | |
|                 this[this.tableMailData.fromlistColumn] = global::System.Convert.DBNull;
 | |
|             }
 | |
|         }
 | |
|         
 | |
|         /// <summary>
 | |
|         ///Represents strongly named DataRow class.
 | |
|         ///</summary>
 | |
|         public partial class MailFormRow : global::System.Data.DataRow {
 | |
|             
 | |
|             private MailFormDataTable tableMailForm;
 | |
|             
 | |
|             [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
 | |
|             [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
 | |
|             internal MailFormRow(global::System.Data.DataRowBuilder rb) : 
 | |
|                     base(rb) {
 | |
|                 this.tableMailForm = ((MailFormDataTable)(this.Table));
 | |
|             }
 | |
|             
 | |
|             [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
 | |
|             [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
 | |
|             public int idx {
 | |
|                 get {
 | |
|                     return ((int)(this[this.tableMailForm.idxColumn]));
 | |
|                 }
 | |
|                 set {
 | |
|                     this[this.tableMailForm.idxColumn] = value;
 | |
|                 }
 | |
|             }
 | |
|             
 | |
|             [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
 | |
|             [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
 | |
|             public string gcode {
 | |
|                 get {
 | |
|                     return ((string)(this[this.tableMailForm.gcodeColumn]));
 | |
|                 }
 | |
|                 set {
 | |
|                     this[this.tableMailForm.gcodeColumn] = value;
 | |
|                 }
 | |
|             }
 | |
|             
 | |
|             [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
 | |
|             [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
 | |
|             public string cate {
 | |
|                 get {
 | |
|                     if (this.IscateNull()) {
 | |
|                         return string.Empty;
 | |
|                     }
 | |
|                     else {
 | |
|                         return ((string)(this[this.tableMailForm.cateColumn]));
 | |
|                     }
 | |
|                 }
 | |
|                 set {
 | |
|                     this[this.tableMailForm.cateColumn] = value;
 | |
|                 }
 | |
|             }
 | |
|             
 | |
|             [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
 | |
|             [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
 | |
|             public string title {
 | |
|                 get {
 | |
|                     if (this.IstitleNull()) {
 | |
|                         return string.Empty;
 | |
|                     }
 | |
|                     else {
 | |
|                         return ((string)(this[this.tableMailForm.titleColumn]));
 | |
|                     }
 | |
|                 }
 | |
|                 set {
 | |
|                     this[this.tableMailForm.titleColumn] = value;
 | |
|                 }
 | |
|             }
 | |
|             
 | |
|             [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
 | |
|             [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
 | |
|             public string tolist {
 | |
|                 get {
 | |
|                     if (this.IstolistNull()) {
 | |
|                         return string.Empty;
 | |
|                     }
 | |
|                     else {
 | |
|                         return ((string)(this[this.tableMailForm.tolistColumn]));
 | |
|                     }
 | |
|                 }
 | |
|                 set {
 | |
|                     this[this.tableMailForm.tolistColumn] = value;
 | |
|                 }
 | |
|             }
 | |
|             
 | |
|             [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
 | |
|             [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
 | |
|             public string bcc {
 | |
|                 get {
 | |
|                     if (this.IsbccNull()) {
 | |
|                         return string.Empty;
 | |
|                     }
 | |
|                     else {
 | |
|                         return ((string)(this[this.tableMailForm.bccColumn]));
 | |
|                     }
 | |
|                 }
 | |
|                 set {
 | |
|                     this[this.tableMailForm.bccColumn] = value;
 | |
|                 }
 | |
|             }
 | |
|             
 | |
|             [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
 | |
|             [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
 | |
|             public string cc {
 | |
|                 get {
 | |
|                     if (this.IsccNull()) {
 | |
|                         return string.Empty;
 | |
|                     }
 | |
|                     else {
 | |
|                         return ((string)(this[this.tableMailForm.ccColumn]));
 | |
|                     }
 | |
|                 }
 | |
|                 set {
 | |
|                     this[this.tableMailForm.ccColumn] = value;
 | |
|                 }
 | |
|             }
 | |
|             
 | |
|             [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
 | |
|             [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
 | |
|             public string subject {
 | |
|                 get {
 | |
|                     if (this.IssubjectNull()) {
 | |
|                         return string.Empty;
 | |
|                     }
 | |
|                     else {
 | |
|                         return ((string)(this[this.tableMailForm.subjectColumn]));
 | |
|                     }
 | |
|                 }
 | |
|                 set {
 | |
|                     this[this.tableMailForm.subjectColumn] = value;
 | |
|                 }
 | |
|             }
 | |
|             
 | |
|             [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
 | |
|             [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
 | |
|             public string tail {
 | |
|                 get {
 | |
|                     if (this.IstailNull()) {
 | |
|                         return string.Empty;
 | |
|                     }
 | |
|                     else {
 | |
|                         return ((string)(this[this.tableMailForm.tailColumn]));
 | |
|                     }
 | |
|                 }
 | |
|                 set {
 | |
|                     this[this.tableMailForm.tailColumn] = value;
 | |
|                 }
 | |
|             }
 | |
|             
 | |
|             [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
 | |
|             [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
 | |
|             public string body {
 | |
|                 get {
 | |
|                     if (this.IsbodyNull()) {
 | |
|                         return string.Empty;
 | |
|                     }
 | |
|                     else {
 | |
|                         return ((string)(this[this.tableMailForm.bodyColumn]));
 | |
|                     }
 | |
|                 }
 | |
|                 set {
 | |
|                     this[this.tableMailForm.bodyColumn] = value;
 | |
|                 }
 | |
|             }
 | |
|             
 | |
|             [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
 | |
|             [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
 | |
|             public bool selfTo {
 | |
|                 get {
 | |
|                     if (this.IsselfToNull()) {
 | |
|                         return false;
 | |
|                     }
 | |
|                     else {
 | |
|                         return ((bool)(this[this.tableMailForm.selfToColumn]));
 | |
|                     }
 | |
|                 }
 | |
|                 set {
 | |
|                     this[this.tableMailForm.selfToColumn] = value;
 | |
|                 }
 | |
|             }
 | |
|             
 | |
|             [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
 | |
|             [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
 | |
|             public bool selfCC {
 | |
|                 get {
 | |
|                     if (this.IsselfCCNull()) {
 | |
|                         return false;
 | |
|                     }
 | |
|                     else {
 | |
|                         return ((bool)(this[this.tableMailForm.selfCCColumn]));
 | |
|                     }
 | |
|                 }
 | |
|                 set {
 | |
|                     this[this.tableMailForm.selfCCColumn] = value;
 | |
|                 }
 | |
|             }
 | |
|             
 | |
|             [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
 | |
|             [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
 | |
|             public bool selfBCC {
 | |
|                 get {
 | |
|                     if (this.IsselfBCCNull()) {
 | |
|                         return false;
 | |
|                     }
 | |
|                     else {
 | |
|                         return ((bool)(this[this.tableMailForm.selfBCCColumn]));
 | |
|                     }
 | |
|                 }
 | |
|                 set {
 | |
|                     this[this.tableMailForm.selfBCCColumn] = value;
 | |
|                 }
 | |
|             }
 | |
|             
 | |
|             [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
 | |
|             [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
 | |
|             public string wuid {
 | |
|                 get {
 | |
|                     return ((string)(this[this.tableMailForm.wuidColumn]));
 | |
|                 }
 | |
|                 set {
 | |
|                     this[this.tableMailForm.wuidColumn] = value;
 | |
|                 }
 | |
|             }
 | |
|             
 | |
|             [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
 | |
|             [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
 | |
|             public System.DateTime wdate {
 | |
|                 get {
 | |
|                     return ((global::System.DateTime)(this[this.tableMailForm.wdateColumn]));
 | |
|                 }
 | |
|                 set {
 | |
|                     this[this.tableMailForm.wdateColumn] = value;
 | |
|                 }
 | |
|             }
 | |
|             
 | |
|             [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
 | |
|             [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
 | |
|             public bool IscateNull() {
 | |
|                 return this.IsNull(this.tableMailForm.cateColumn);
 | |
|             }
 | |
|             
 | |
|             [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
 | |
|             [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
 | |
|             public void SetcateNull() {
 | |
|                 this[this.tableMailForm.cateColumn] = global::System.Convert.DBNull;
 | |
|             }
 | |
|             
 | |
|             [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
 | |
|             [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
 | |
|             public bool IstitleNull() {
 | |
|                 return this.IsNull(this.tableMailForm.titleColumn);
 | |
|             }
 | |
|             
 | |
|             [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
 | |
|             [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
 | |
|             public void SettitleNull() {
 | |
|                 this[this.tableMailForm.titleColumn] = global::System.Convert.DBNull;
 | |
|             }
 | |
|             
 | |
|             [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
 | |
|             [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
 | |
|             public bool IstolistNull() {
 | |
|                 return this.IsNull(this.tableMailForm.tolistColumn);
 | |
|             }
 | |
|             
 | |
|             [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
 | |
|             [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
 | |
|             public void SettolistNull() {
 | |
|                 this[this.tableMailForm.tolistColumn] = global::System.Convert.DBNull;
 | |
|             }
 | |
|             
 | |
|             [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
 | |
|             [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
 | |
|             public bool IsbccNull() {
 | |
|                 return this.IsNull(this.tableMailForm.bccColumn);
 | |
|             }
 | |
|             
 | |
|             [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
 | |
|             [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
 | |
|             public void SetbccNull() {
 | |
|                 this[this.tableMailForm.bccColumn] = global::System.Convert.DBNull;
 | |
|             }
 | |
|             
 | |
|             [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
 | |
|             [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
 | |
|             public bool IsccNull() {
 | |
|                 return this.IsNull(this.tableMailForm.ccColumn);
 | |
|             }
 | |
|             
 | |
|             [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
 | |
|             [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
 | |
|             public void SetccNull() {
 | |
|                 this[this.tableMailForm.ccColumn] = global::System.Convert.DBNull;
 | |
|             }
 | |
|             
 | |
|             [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
 | |
|             [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
 | |
|             public bool IssubjectNull() {
 | |
|                 return this.IsNull(this.tableMailForm.subjectColumn);
 | |
|             }
 | |
|             
 | |
|             [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
 | |
|             [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
 | |
|             public void SetsubjectNull() {
 | |
|                 this[this.tableMailForm.subjectColumn] = global::System.Convert.DBNull;
 | |
|             }
 | |
|             
 | |
|             [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
 | |
|             [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
 | |
|             public bool IstailNull() {
 | |
|                 return this.IsNull(this.tableMailForm.tailColumn);
 | |
|             }
 | |
|             
 | |
|             [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
 | |
|             [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
 | |
|             public void SettailNull() {
 | |
|                 this[this.tableMailForm.tailColumn] = global::System.Convert.DBNull;
 | |
|             }
 | |
|             
 | |
|             [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
 | |
|             [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
 | |
|             public bool IsbodyNull() {
 | |
|                 return this.IsNull(this.tableMailForm.bodyColumn);
 | |
|             }
 | |
|             
 | |
|             [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
 | |
|             [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
 | |
|             public void SetbodyNull() {
 | |
|                 this[this.tableMailForm.bodyColumn] = global::System.Convert.DBNull;
 | |
|             }
 | |
|             
 | |
|             [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
 | |
|             [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
 | |
|             public bool IsselfToNull() {
 | |
|                 return this.IsNull(this.tableMailForm.selfToColumn);
 | |
|             }
 | |
|             
 | |
|             [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
 | |
|             [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
 | |
|             public void SetselfToNull() {
 | |
|                 this[this.tableMailForm.selfToColumn] = global::System.Convert.DBNull;
 | |
|             }
 | |
|             
 | |
|             [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
 | |
|             [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
 | |
|             public bool IsselfCCNull() {
 | |
|                 return this.IsNull(this.tableMailForm.selfCCColumn);
 | |
|             }
 | |
|             
 | |
|             [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
 | |
|             [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
 | |
|             public void SetselfCCNull() {
 | |
|                 this[this.tableMailForm.selfCCColumn] = global::System.Convert.DBNull;
 | |
|             }
 | |
|             
 | |
|             [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
 | |
|             [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
 | |
|             public bool IsselfBCCNull() {
 | |
|                 return this.IsNull(this.tableMailForm.selfBCCColumn);
 | |
|             }
 | |
|             
 | |
|             [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
 | |
|             [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
 | |
|             public void SetselfBCCNull() {
 | |
|                 this[this.tableMailForm.selfBCCColumn] = global::System.Convert.DBNull;
 | |
|             }
 | |
|         }
 | |
|         
 | |
|         /// <summary>
 | |
|         ///Row event argument class
 | |
|         ///</summary>
 | |
|         [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
 | |
|         public class vMailingProjectScheduleRowChangeEvent : global::System.EventArgs {
 | |
|             
 | |
|             private vMailingProjectScheduleRow eventRow;
 | |
|             
 | |
|             private global::System.Data.DataRowAction eventAction;
 | |
|             
 | |
|             [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
 | |
|             [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
 | |
|             public vMailingProjectScheduleRowChangeEvent(vMailingProjectScheduleRow 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", "16.0.0.0")]
 | |
|             public vMailingProjectScheduleRow Row {
 | |
|                 get {
 | |
|                     return this.eventRow;
 | |
|                 }
 | |
|             }
 | |
|             
 | |
|             [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
 | |
|             [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
 | |
|             public global::System.Data.DataRowAction Action {
 | |
|                 get {
 | |
|                     return this.eventAction;
 | |
|                 }
 | |
|             }
 | |
|         }
 | |
|         
 | |
|         /// <summary>
 | |
|         ///Row event argument class
 | |
|         ///</summary>
 | |
|         [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
 | |
|         public class MailAutoRowChangeEvent : global::System.EventArgs {
 | |
|             
 | |
|             private MailAutoRow eventRow;
 | |
|             
 | |
|             private global::System.Data.DataRowAction eventAction;
 | |
|             
 | |
|             [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
 | |
|             [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
 | |
|             public MailAutoRowChangeEvent(MailAutoRow 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", "16.0.0.0")]
 | |
|             public MailAutoRow Row {
 | |
|                 get {
 | |
|                     return this.eventRow;
 | |
|                 }
 | |
|             }
 | |
|             
 | |
|             [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
 | |
|             [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
 | |
|             public global::System.Data.DataRowAction Action {
 | |
|                 get {
 | |
|                     return this.eventAction;
 | |
|                 }
 | |
|             }
 | |
|         }
 | |
|         
 | |
|         /// <summary>
 | |
|         ///Row event argument class
 | |
|         ///</summary>
 | |
|         [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
 | |
|         public class MailDataRowChangeEvent : global::System.EventArgs {
 | |
|             
 | |
|             private MailDataRow eventRow;
 | |
|             
 | |
|             private global::System.Data.DataRowAction eventAction;
 | |
|             
 | |
|             [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
 | |
|             [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
 | |
|             public MailDataRowChangeEvent(MailDataRow 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", "16.0.0.0")]
 | |
|             public MailDataRow Row {
 | |
|                 get {
 | |
|                     return this.eventRow;
 | |
|                 }
 | |
|             }
 | |
|             
 | |
|             [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
 | |
|             [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
 | |
|             public global::System.Data.DataRowAction Action {
 | |
|                 get {
 | |
|                     return this.eventAction;
 | |
|                 }
 | |
|             }
 | |
|         }
 | |
|         
 | |
|         /// <summary>
 | |
|         ///Row event argument class
 | |
|         ///</summary>
 | |
|         [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
 | |
|         public class MailFormRowChangeEvent : global::System.EventArgs {
 | |
|             
 | |
|             private MailFormRow eventRow;
 | |
|             
 | |
|             private global::System.Data.DataRowAction eventAction;
 | |
|             
 | |
|             [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
 | |
|             [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
 | |
|             public MailFormRowChangeEvent(MailFormRow 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", "16.0.0.0")]
 | |
|             public MailFormRow Row {
 | |
|                 get {
 | |
|                     return this.eventRow;
 | |
|                 }
 | |
|             }
 | |
|             
 | |
|             [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
 | |
|             [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
 | |
|             public global::System.Data.DataRowAction Action {
 | |
|                 get {
 | |
|                     return this.eventAction;
 | |
|                 }
 | |
|             }
 | |
|         }
 | |
|     }
 | |
| }
 | |
| namespace JobReportMailService.DataSet1TableAdapters {
 | |
|     
 | |
|     
 | |
|     /// <summary>
 | |
|     ///Represents the connection and commands used to retrieve and save data.
 | |
|     ///</summary>
 | |
|     [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 vMailingProjectScheduleTableAdapter : 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", "16.0.0.0")]
 | |
|         public vMailingProjectScheduleTableAdapter() {
 | |
|             this.ClearBeforeFill = true;
 | |
|         }
 | |
|         
 | |
|         [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
 | |
|         [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.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", "16.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", "16.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", "16.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", "16.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", "16.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 = "vMailingProjectSchedule";
 | |
|             tableMapping.ColumnMappings.Add("idx", "idx");
 | |
|             tableMapping.ColumnMappings.Add("pdate", "pdate");
 | |
|             tableMapping.ColumnMappings.Add("name", "name");
 | |
|             tableMapping.ColumnMappings.Add("userManager", "userManager");
 | |
|             tableMapping.ColumnMappings.Add("seq", "seq");
 | |
|             tableMapping.ColumnMappings.Add("title", "title");
 | |
|             tableMapping.ColumnMappings.Add("sw", "sw");
 | |
|             tableMapping.ColumnMappings.Add("ew", "ew");
 | |
|             tableMapping.ColumnMappings.Add("swa", "swa");
 | |
|             tableMapping.ColumnMappings.Add("progress", "progress");
 | |
|             tableMapping.ColumnMappings.Add("ewa", "ewa");
 | |
|             tableMapping.ColumnMappings.Add("ww", "ww");
 | |
|             tableMapping.ColumnMappings.Add("memo", "memo");
 | |
|             tableMapping.ColumnMappings.Add("sidx", "sidx");
 | |
|             this._adapter.TableMappings.Add(tableMapping);
 | |
|         }
 | |
|         
 | |
|         [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
 | |
|         [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
 | |
|         private void InitConnection() {
 | |
|             this._connection = new global::System.Data.SqlClient.SqlConnection();
 | |
|             this._connection.ConnectionString = global::JobReportMailService.Properties.Settings.Default.CS;
 | |
|         }
 | |
|         
 | |
|         [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
 | |
|         [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.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, pdate, name, userManager, seq, title, sw, ew, swa, progress, ewa, ww" +
 | |
|                 ", memo, sidx\r\nFROM     vMailingProjectSchedule\r\nORDER BY pdate, idx, seq";
 | |
|             this._commandCollection[0].CommandType = global::System.Data.CommandType.Text;
 | |
|         }
 | |
|         
 | |
|         [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
 | |
|         [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.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(DataSet1.vMailingProjectScheduleDataTable dataTable) {
 | |
|             this.Adapter.SelectCommand = this.CommandCollection[0];
 | |
|             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", "16.0.0.0")]
 | |
|         [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
 | |
|         [global::System.ComponentModel.DataObjectMethodAttribute(global::System.ComponentModel.DataObjectMethodType.Select, true)]
 | |
|         public virtual DataSet1.vMailingProjectScheduleDataTable GetData() {
 | |
|             this.Adapter.SelectCommand = this.CommandCollection[0];
 | |
|             DataSet1.vMailingProjectScheduleDataTable dataTable = new DataSet1.vMailingProjectScheduleDataTable();
 | |
|             this.Adapter.Fill(dataTable);
 | |
|             return dataTable;
 | |
|         }
 | |
|     }
 | |
|     
 | |
|     /// <summary>
 | |
|     ///Represents the connection and commands used to retrieve and save data.
 | |
|     ///</summary>
 | |
|     [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 MailAutoTableAdapter : 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", "16.0.0.0")]
 | |
|         public MailAutoTableAdapter() {
 | |
|             this.ClearBeforeFill = true;
 | |
|         }
 | |
|         
 | |
|         [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
 | |
|         [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.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", "16.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", "16.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", "16.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", "16.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", "16.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 = "MailAuto";
 | |
|             tableMapping.ColumnMappings.Add("idx", "idx");
 | |
|             tableMapping.ColumnMappings.Add("enable", "enable");
 | |
|             tableMapping.ColumnMappings.Add("fidx", "fidx");
 | |
|             tableMapping.ColumnMappings.Add("gcode", "gcode");
 | |
|             tableMapping.ColumnMappings.Add("tolist", "tolist");
 | |
|             tableMapping.ColumnMappings.Add("bcc", "bcc");
 | |
|             tableMapping.ColumnMappings.Add("cc", "cc");
 | |
|             tableMapping.ColumnMappings.Add("sdate", "sdate");
 | |
|             tableMapping.ColumnMappings.Add("edate", "edate");
 | |
|             tableMapping.ColumnMappings.Add("stime", "stime");
 | |
|             tableMapping.ColumnMappings.Add("sday", "sday");
 | |
|             tableMapping.ColumnMappings.Add("wuid", "wuid");
 | |
|             tableMapping.ColumnMappings.Add("wdate", "wdate");
 | |
|             tableMapping.ColumnMappings.Add("fromlist", "fromlist");
 | |
|             tableMapping.ColumnMappings.Add("subject", "subject");
 | |
|             tableMapping.ColumnMappings.Add("body", "body");
 | |
|             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 [MailAuto] WHERE (([idx] = @Original_idx) AND ((@IsNull_enable = 1 AND [enable] IS NULL) OR ([enable] = @Original_enable)) AND ([fidx] = @Original_fidx) AND ([gcode] = @Original_gcode) AND ((@IsNull_sdate = 1 AND [sdate] IS NULL) OR ([sdate] = @Original_sdate)) AND ((@IsNull_edate = 1 AND [edate] IS NULL) OR ([edate] = @Original_edate)) AND ((@IsNull_stime = 1 AND [stime] IS NULL) OR ([stime] = @Original_stime)) AND ((@IsNull_sday = 1 AND [sday] IS NULL) OR ([sday] = @Original_sday)) AND ([wuid] = @Original_wuid) AND ([wdate] = @Original_wdate))";
 | |
|             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_enable", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "enable", global::System.Data.DataRowVersion.Original, true, null, "", "", ""));
 | |
|             this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_enable", global::System.Data.SqlDbType.Bit, 0, global::System.Data.ParameterDirection.Input, 0, 0, "enable", global::System.Data.DataRowVersion.Original, false, null, "", "", ""));
 | |
|             this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_fidx", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "fidx", 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_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_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_stime", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "stime", global::System.Data.DataRowVersion.Original, true, null, "", "", ""));
 | |
|             this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_stime", global::System.Data.SqlDbType.VarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "stime", global::System.Data.DataRowVersion.Original, false, null, "", "", ""));
 | |
|             this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@IsNull_sday", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "sday", global::System.Data.DataRowVersion.Original, true, null, "", "", ""));
 | |
|             this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_sday", global::System.Data.SqlDbType.Binary, 0, global::System.Data.ParameterDirection.Input, 0, 0, "sday", 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.InsertCommand = new global::System.Data.SqlClient.SqlCommand();
 | |
|             this._adapter.InsertCommand.Connection = this.Connection;
 | |
|             this._adapter.InsertCommand.CommandText = @"INSERT INTO [MailAuto] ([enable], [fidx], [gcode], [fromlist], [tolist], [bcc], [cc], [sdate], [edate], [stime], [sday], [wuid], [wdate], [subject], [body]) VALUES (@enable, @fidx, @gcode, @fromlist, @tolist, @bcc, @cc, @sdate, @edate, @stime, @sday, @wuid, @wdate, @subject, @body);
 | |
| SELECT idx, enable, fidx, gcode, fromlist, tolist, bcc, cc, sdate, edate, stime, sday, wuid, wdate, subject, body FROM MailAuto WHERE (idx = SCOPE_IDENTITY())";
 | |
|             this._adapter.InsertCommand.CommandType = global::System.Data.CommandType.Text;
 | |
|             this._adapter.InsertCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@enable", global::System.Data.SqlDbType.Bit, 0, global::System.Data.ParameterDirection.Input, 0, 0, "enable", global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
 | |
|             this._adapter.InsertCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@fidx", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "fidx", 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("@fromlist", global::System.Data.SqlDbType.VarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "fromlist", global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
 | |
|             this._adapter.InsertCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@tolist", global::System.Data.SqlDbType.VarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "tolist", global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
 | |
|             this._adapter.InsertCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@bcc", global::System.Data.SqlDbType.VarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "bcc", global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
 | |
|             this._adapter.InsertCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@cc", global::System.Data.SqlDbType.VarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "cc", 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("@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("@stime", global::System.Data.SqlDbType.VarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "stime", global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
 | |
|             this._adapter.InsertCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@sday", global::System.Data.SqlDbType.Binary, 0, global::System.Data.ParameterDirection.Input, 0, 0, "sday", 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("@subject", global::System.Data.SqlDbType.VarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "subject", global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
 | |
|             this._adapter.InsertCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@body", global::System.Data.SqlDbType.VarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "body", 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 [MailAuto] SET [enable] = @enable, [fidx] = @fidx, [gcode] = @gcode, [fromlist] = @fromlist, [tolist] = @tolist, [bcc] = @bcc, [cc] = @cc, [sdate] = @sdate, [edate] = @edate, [stime] = @stime, [sday] = @sday, [wuid] = @wuid, [wdate] = @wdate, [subject] = @subject, [body] = @body WHERE (([idx] = @Original_idx) AND ((@IsNull_enable = 1 AND [enable] IS NULL) OR ([enable] = @Original_enable)) AND ([fidx] = @Original_fidx) AND ([gcode] = @Original_gcode) AND ((@IsNull_sdate = 1 AND [sdate] IS NULL) OR ([sdate] = @Original_sdate)) AND ((@IsNull_edate = 1 AND [edate] IS NULL) OR ([edate] = @Original_edate)) AND ((@IsNull_stime = 1 AND [stime] IS NULL) OR ([stime] = @Original_stime)) AND ((@IsNull_sday = 1 AND [sday] IS NULL) OR ([sday] = @Original_sday)) AND ([wuid] = @Original_wuid) AND ([wdate] = @Original_wdate));
 | |
| SELECT idx, enable, fidx, gcode, fromlist, tolist, bcc, cc, sdate, edate, stime, sday, wuid, wdate, subject, body FROM MailAuto WHERE (idx = @idx)";
 | |
|             this._adapter.UpdateCommand.CommandType = global::System.Data.CommandType.Text;
 | |
|             this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@enable", global::System.Data.SqlDbType.Bit, 0, global::System.Data.ParameterDirection.Input, 0, 0, "enable", global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
 | |
|             this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@fidx", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "fidx", 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("@fromlist", global::System.Data.SqlDbType.VarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "fromlist", global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
 | |
|             this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@tolist", global::System.Data.SqlDbType.VarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "tolist", global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
 | |
|             this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@bcc", global::System.Data.SqlDbType.VarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "bcc", global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
 | |
|             this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@cc", global::System.Data.SqlDbType.VarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "cc", 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("@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("@stime", global::System.Data.SqlDbType.VarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "stime", global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
 | |
|             this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@sday", global::System.Data.SqlDbType.Binary, 0, global::System.Data.ParameterDirection.Input, 0, 0, "sday", 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("@subject", global::System.Data.SqlDbType.VarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "subject", global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
 | |
|             this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@body", global::System.Data.SqlDbType.VarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "body", 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_enable", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "enable", global::System.Data.DataRowVersion.Original, true, null, "", "", ""));
 | |
|             this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_enable", global::System.Data.SqlDbType.Bit, 0, global::System.Data.ParameterDirection.Input, 0, 0, "enable", global::System.Data.DataRowVersion.Original, false, null, "", "", ""));
 | |
|             this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_fidx", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "fidx", 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_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_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_stime", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "stime", global::System.Data.DataRowVersion.Original, true, null, "", "", ""));
 | |
|             this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_stime", global::System.Data.SqlDbType.VarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "stime", global::System.Data.DataRowVersion.Original, false, null, "", "", ""));
 | |
|             this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@IsNull_sday", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "sday", global::System.Data.DataRowVersion.Original, true, null, "", "", ""));
 | |
|             this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_sday", global::System.Data.SqlDbType.Binary, 0, global::System.Data.ParameterDirection.Input, 0, 0, "sday", 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("@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", "16.0.0.0")]
 | |
|         private void InitConnection() {
 | |
|             this._connection = new global::System.Data.SqlClient.SqlConnection();
 | |
|             this._connection.ConnectionString = global::JobReportMailService.Properties.Settings.Default.CS;
 | |
|         }
 | |
|         
 | |
|         [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
 | |
|         [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
 | |
|         private void InitCommandCollection() {
 | |
|             this._commandCollection = new global::System.Data.SqlClient.SqlCommand[2];
 | |
|             this._commandCollection[0] = new global::System.Data.SqlClient.SqlCommand();
 | |
|             this._commandCollection[0].Connection = this.Connection;
 | |
|             this._commandCollection[0].CommandText = "SELECT  idx, enable, fidx, gcode, fromlist, tolist, bcc, cc, sdate, edate, stime," +
 | |
|                 " sday, wuid, wdate, subject, body\r\nFROM     MailAuto";
 | |
|             this._commandCollection[0].CommandType = global::System.Data.CommandType.Text;
 | |
|             this._commandCollection[1] = new global::System.Data.SqlClient.SqlCommand();
 | |
|             this._commandCollection[1].Connection = this.Connection;
 | |
|             this._commandCollection[1].CommandText = "SELECT bcc, body, cc, edate, enable, fidx, fromlist, gcode, idx, sdate, sday, sti" +
 | |
|                 "me, subject, tolist, wdate, wuid FROM MailAuto WHERE (enable = 1) AND (ISNULL(fr" +
 | |
|                 "omlist, \'\') <> \'\') AND (ISNULL(tolist, \'\') <> \'\') AND (ISNULL(stime, \'\') <> \'\')";
 | |
|             this._commandCollection[1].CommandType = global::System.Data.CommandType.Text;
 | |
|         }
 | |
|         
 | |
|         [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
 | |
|         [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.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(DataSet1.MailAutoDataTable dataTable) {
 | |
|             this.Adapter.SelectCommand = this.CommandCollection[0];
 | |
|             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", "16.0.0.0")]
 | |
|         [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
 | |
|         [global::System.ComponentModel.DataObjectMethodAttribute(global::System.ComponentModel.DataObjectMethodType.Select, true)]
 | |
|         public virtual DataSet1.MailAutoDataTable GetData() {
 | |
|             this.Adapter.SelectCommand = this.CommandCollection[0];
 | |
|             DataSet1.MailAutoDataTable dataTable = new DataSet1.MailAutoDataTable();
 | |
|             this.Adapter.Fill(dataTable);
 | |
|             return dataTable;
 | |
|         }
 | |
|         
 | |
|         [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
 | |
|         [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
 | |
|         [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
 | |
|         [global::System.ComponentModel.DataObjectMethodAttribute(global::System.ComponentModel.DataObjectMethodType.Fill, false)]
 | |
|         public virtual int FillByAutoSend(DataSet1.MailAutoDataTable dataTable) {
 | |
|             this.Adapter.SelectCommand = this.CommandCollection[1];
 | |
|             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", "16.0.0.0")]
 | |
|         [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
 | |
|         [global::System.ComponentModel.DataObjectMethodAttribute(global::System.ComponentModel.DataObjectMethodType.Select, false)]
 | |
|         public virtual DataSet1.MailAutoDataTable GetByAutoSend() {
 | |
|             this.Adapter.SelectCommand = this.CommandCollection[1];
 | |
|             DataSet1.MailAutoDataTable dataTable = new DataSet1.MailAutoDataTable();
 | |
|             this.Adapter.Fill(dataTable);
 | |
|             return dataTable;
 | |
|         }
 | |
|         
 | |
|         [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
 | |
|         [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
 | |
|         [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
 | |
|         public virtual int Update(DataSet1.MailAutoDataTable dataTable) {
 | |
|             return this.Adapter.Update(dataTable);
 | |
|         }
 | |
|         
 | |
|         [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
 | |
|         [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
 | |
|         [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
 | |
|         public virtual int Update(DataSet1 dataSet) {
 | |
|             return this.Adapter.Update(dataSet, "MailAuto");
 | |
|         }
 | |
|         
 | |
|         [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
 | |
|         [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.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", "16.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", "16.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<bool> Original_enable, int Original_fidx, string Original_gcode, string Original_sdate, string Original_edate, string Original_stime, byte[] Original_sday, string Original_wuid, System.DateTime Original_wdate) {
 | |
|             this.Adapter.DeleteCommand.Parameters[0].Value = ((int)(Original_idx));
 | |
|             if ((Original_enable.HasValue == true)) {
 | |
|                 this.Adapter.DeleteCommand.Parameters[1].Value = ((object)(0));
 | |
|                 this.Adapter.DeleteCommand.Parameters[2].Value = ((bool)(Original_enable.Value));
 | |
|             }
 | |
|             else {
 | |
|                 this.Adapter.DeleteCommand.Parameters[1].Value = ((object)(1));
 | |
|                 this.Adapter.DeleteCommand.Parameters[2].Value = global::System.DBNull.Value;
 | |
|             }
 | |
|             this.Adapter.DeleteCommand.Parameters[3].Value = ((int)(Original_fidx));
 | |
|             if ((Original_gcode == null)) {
 | |
|                 throw new global::System.ArgumentNullException("Original_gcode");
 | |
|             }
 | |
|             else {
 | |
|                 this.Adapter.DeleteCommand.Parameters[4].Value = ((string)(Original_gcode));
 | |
|             }
 | |
|             if ((Original_sdate == null)) {
 | |
|                 this.Adapter.DeleteCommand.Parameters[5].Value = ((object)(1));
 | |
|                 this.Adapter.DeleteCommand.Parameters[6].Value = global::System.DBNull.Value;
 | |
|             }
 | |
|             else {
 | |
|                 this.Adapter.DeleteCommand.Parameters[5].Value = ((object)(0));
 | |
|                 this.Adapter.DeleteCommand.Parameters[6].Value = ((string)(Original_sdate));
 | |
|             }
 | |
|             if ((Original_edate == null)) {
 | |
|                 this.Adapter.DeleteCommand.Parameters[7].Value = ((object)(1));
 | |
|                 this.Adapter.DeleteCommand.Parameters[8].Value = global::System.DBNull.Value;
 | |
|             }
 | |
|             else {
 | |
|                 this.Adapter.DeleteCommand.Parameters[7].Value = ((object)(0));
 | |
|                 this.Adapter.DeleteCommand.Parameters[8].Value = ((string)(Original_edate));
 | |
|             }
 | |
|             if ((Original_stime == 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_stime));
 | |
|             }
 | |
|             if ((Original_sday == 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 = ((byte[])(Original_sday));
 | |
|             }
 | |
|             if ((Original_wuid == null)) {
 | |
|                 throw new global::System.ArgumentNullException("Original_wuid");
 | |
|             }
 | |
|             else {
 | |
|                 this.Adapter.DeleteCommand.Parameters[13].Value = ((string)(Original_wuid));
 | |
|             }
 | |
|             this.Adapter.DeleteCommand.Parameters[14].Value = ((System.DateTime)(Original_wdate));
 | |
|             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", "16.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<bool> enable, int fidx, string gcode, string fromlist, string tolist, string bcc, string cc, string sdate, string edate, string stime, byte[] sday, string wuid, System.DateTime wdate, string subject, string body) {
 | |
|             if ((enable.HasValue == true)) {
 | |
|                 this.Adapter.InsertCommand.Parameters[0].Value = ((bool)(enable.Value));
 | |
|             }
 | |
|             else {
 | |
|                 this.Adapter.InsertCommand.Parameters[0].Value = global::System.DBNull.Value;
 | |
|             }
 | |
|             this.Adapter.InsertCommand.Parameters[1].Value = ((int)(fidx));
 | |
|             if ((gcode == null)) {
 | |
|                 throw new global::System.ArgumentNullException("gcode");
 | |
|             }
 | |
|             else {
 | |
|                 this.Adapter.InsertCommand.Parameters[2].Value = ((string)(gcode));
 | |
|             }
 | |
|             if ((fromlist == null)) {
 | |
|                 this.Adapter.InsertCommand.Parameters[3].Value = global::System.DBNull.Value;
 | |
|             }
 | |
|             else {
 | |
|                 this.Adapter.InsertCommand.Parameters[3].Value = ((string)(fromlist));
 | |
|             }
 | |
|             if ((tolist == null)) {
 | |
|                 this.Adapter.InsertCommand.Parameters[4].Value = global::System.DBNull.Value;
 | |
|             }
 | |
|             else {
 | |
|                 this.Adapter.InsertCommand.Parameters[4].Value = ((string)(tolist));
 | |
|             }
 | |
|             if ((bcc == null)) {
 | |
|                 this.Adapter.InsertCommand.Parameters[5].Value = global::System.DBNull.Value;
 | |
|             }
 | |
|             else {
 | |
|                 this.Adapter.InsertCommand.Parameters[5].Value = ((string)(bcc));
 | |
|             }
 | |
|             if ((cc == null)) {
 | |
|                 this.Adapter.InsertCommand.Parameters[6].Value = global::System.DBNull.Value;
 | |
|             }
 | |
|             else {
 | |
|                 this.Adapter.InsertCommand.Parameters[6].Value = ((string)(cc));
 | |
|             }
 | |
|             if ((sdate == null)) {
 | |
|                 this.Adapter.InsertCommand.Parameters[7].Value = global::System.DBNull.Value;
 | |
|             }
 | |
|             else {
 | |
|                 this.Adapter.InsertCommand.Parameters[7].Value = ((string)(sdate));
 | |
|             }
 | |
|             if ((edate == null)) {
 | |
|                 this.Adapter.InsertCommand.Parameters[8].Value = global::System.DBNull.Value;
 | |
|             }
 | |
|             else {
 | |
|                 this.Adapter.InsertCommand.Parameters[8].Value = ((string)(edate));
 | |
|             }
 | |
|             if ((stime == null)) {
 | |
|                 this.Adapter.InsertCommand.Parameters[9].Value = global::System.DBNull.Value;
 | |
|             }
 | |
|             else {
 | |
|                 this.Adapter.InsertCommand.Parameters[9].Value = ((string)(stime));
 | |
|             }
 | |
|             if ((sday == null)) {
 | |
|                 this.Adapter.InsertCommand.Parameters[10].Value = global::System.DBNull.Value;
 | |
|             }
 | |
|             else {
 | |
|                 this.Adapter.InsertCommand.Parameters[10].Value = ((byte[])(sday));
 | |
|             }
 | |
|             if ((wuid == null)) {
 | |
|                 throw new global::System.ArgumentNullException("wuid");
 | |
|             }
 | |
|             else {
 | |
|                 this.Adapter.InsertCommand.Parameters[11].Value = ((string)(wuid));
 | |
|             }
 | |
|             this.Adapter.InsertCommand.Parameters[12].Value = ((System.DateTime)(wdate));
 | |
|             if ((subject == null)) {
 | |
|                 this.Adapter.InsertCommand.Parameters[13].Value = global::System.DBNull.Value;
 | |
|             }
 | |
|             else {
 | |
|                 this.Adapter.InsertCommand.Parameters[13].Value = ((string)(subject));
 | |
|             }
 | |
|             if ((body == null)) {
 | |
|                 this.Adapter.InsertCommand.Parameters[14].Value = global::System.DBNull.Value;
 | |
|             }
 | |
|             else {
 | |
|                 this.Adapter.InsertCommand.Parameters[14].Value = ((string)(body));
 | |
|             }
 | |
|             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", "16.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<bool> enable, 
 | |
|                     int fidx, 
 | |
|                     string gcode, 
 | |
|                     string fromlist, 
 | |
|                     string tolist, 
 | |
|                     string bcc, 
 | |
|                     string cc, 
 | |
|                     string sdate, 
 | |
|                     string edate, 
 | |
|                     string stime, 
 | |
|                     byte[] sday, 
 | |
|                     string wuid, 
 | |
|                     System.DateTime wdate, 
 | |
|                     string subject, 
 | |
|                     string body, 
 | |
|                     int Original_idx, 
 | |
|                     global::System.Nullable<bool> Original_enable, 
 | |
|                     int Original_fidx, 
 | |
|                     string Original_gcode, 
 | |
|                     string Original_sdate, 
 | |
|                     string Original_edate, 
 | |
|                     string Original_stime, 
 | |
|                     byte[] Original_sday, 
 | |
|                     string Original_wuid, 
 | |
|                     System.DateTime Original_wdate, 
 | |
|                     int idx) {
 | |
|             if ((enable.HasValue == true)) {
 | |
|                 this.Adapter.UpdateCommand.Parameters[0].Value = ((bool)(enable.Value));
 | |
|             }
 | |
|             else {
 | |
|                 this.Adapter.UpdateCommand.Parameters[0].Value = global::System.DBNull.Value;
 | |
|             }
 | |
|             this.Adapter.UpdateCommand.Parameters[1].Value = ((int)(fidx));
 | |
|             if ((gcode == null)) {
 | |
|                 throw new global::System.ArgumentNullException("gcode");
 | |
|             }
 | |
|             else {
 | |
|                 this.Adapter.UpdateCommand.Parameters[2].Value = ((string)(gcode));
 | |
|             }
 | |
|             if ((fromlist == null)) {
 | |
|                 this.Adapter.UpdateCommand.Parameters[3].Value = global::System.DBNull.Value;
 | |
|             }
 | |
|             else {
 | |
|                 this.Adapter.UpdateCommand.Parameters[3].Value = ((string)(fromlist));
 | |
|             }
 | |
|             if ((tolist == null)) {
 | |
|                 this.Adapter.UpdateCommand.Parameters[4].Value = global::System.DBNull.Value;
 | |
|             }
 | |
|             else {
 | |
|                 this.Adapter.UpdateCommand.Parameters[4].Value = ((string)(tolist));
 | |
|             }
 | |
|             if ((bcc == null)) {
 | |
|                 this.Adapter.UpdateCommand.Parameters[5].Value = global::System.DBNull.Value;
 | |
|             }
 | |
|             else {
 | |
|                 this.Adapter.UpdateCommand.Parameters[5].Value = ((string)(bcc));
 | |
|             }
 | |
|             if ((cc == null)) {
 | |
|                 this.Adapter.UpdateCommand.Parameters[6].Value = global::System.DBNull.Value;
 | |
|             }
 | |
|             else {
 | |
|                 this.Adapter.UpdateCommand.Parameters[6].Value = ((string)(cc));
 | |
|             }
 | |
|             if ((sdate == null)) {
 | |
|                 this.Adapter.UpdateCommand.Parameters[7].Value = global::System.DBNull.Value;
 | |
|             }
 | |
|             else {
 | |
|                 this.Adapter.UpdateCommand.Parameters[7].Value = ((string)(sdate));
 | |
|             }
 | |
|             if ((edate == null)) {
 | |
|                 this.Adapter.UpdateCommand.Parameters[8].Value = global::System.DBNull.Value;
 | |
|             }
 | |
|             else {
 | |
|                 this.Adapter.UpdateCommand.Parameters[8].Value = ((string)(edate));
 | |
|             }
 | |
|             if ((stime == null)) {
 | |
|                 this.Adapter.UpdateCommand.Parameters[9].Value = global::System.DBNull.Value;
 | |
|             }
 | |
|             else {
 | |
|                 this.Adapter.UpdateCommand.Parameters[9].Value = ((string)(stime));
 | |
|             }
 | |
|             if ((sday == null)) {
 | |
|                 this.Adapter.UpdateCommand.Parameters[10].Value = global::System.DBNull.Value;
 | |
|             }
 | |
|             else {
 | |
|                 this.Adapter.UpdateCommand.Parameters[10].Value = ((byte[])(sday));
 | |
|             }
 | |
|             if ((wuid == null)) {
 | |
|                 throw new global::System.ArgumentNullException("wuid");
 | |
|             }
 | |
|             else {
 | |
|                 this.Adapter.UpdateCommand.Parameters[11].Value = ((string)(wuid));
 | |
|             }
 | |
|             this.Adapter.UpdateCommand.Parameters[12].Value = ((System.DateTime)(wdate));
 | |
|             if ((subject == null)) {
 | |
|                 this.Adapter.UpdateCommand.Parameters[13].Value = global::System.DBNull.Value;
 | |
|             }
 | |
|             else {
 | |
|                 this.Adapter.UpdateCommand.Parameters[13].Value = ((string)(subject));
 | |
|             }
 | |
|             if ((body == null)) {
 | |
|                 this.Adapter.UpdateCommand.Parameters[14].Value = global::System.DBNull.Value;
 | |
|             }
 | |
|             else {
 | |
|                 this.Adapter.UpdateCommand.Parameters[14].Value = ((string)(body));
 | |
|             }
 | |
|             this.Adapter.UpdateCommand.Parameters[15].Value = ((int)(Original_idx));
 | |
|             if ((Original_enable.HasValue == true)) {
 | |
|                 this.Adapter.UpdateCommand.Parameters[16].Value = ((object)(0));
 | |
|                 this.Adapter.UpdateCommand.Parameters[17].Value = ((bool)(Original_enable.Value));
 | |
|             }
 | |
|             else {
 | |
|                 this.Adapter.UpdateCommand.Parameters[16].Value = ((object)(1));
 | |
|                 this.Adapter.UpdateCommand.Parameters[17].Value = global::System.DBNull.Value;
 | |
|             }
 | |
|             this.Adapter.UpdateCommand.Parameters[18].Value = ((int)(Original_fidx));
 | |
|             if ((Original_gcode == null)) {
 | |
|                 throw new global::System.ArgumentNullException("Original_gcode");
 | |
|             }
 | |
|             else {
 | |
|                 this.Adapter.UpdateCommand.Parameters[19].Value = ((string)(Original_gcode));
 | |
|             }
 | |
|             if ((Original_sdate == null)) {
 | |
|                 this.Adapter.UpdateCommand.Parameters[20].Value = ((object)(1));
 | |
|                 this.Adapter.UpdateCommand.Parameters[21].Value = global::System.DBNull.Value;
 | |
|             }
 | |
|             else {
 | |
|                 this.Adapter.UpdateCommand.Parameters[20].Value = ((object)(0));
 | |
|                 this.Adapter.UpdateCommand.Parameters[21].Value = ((string)(Original_sdate));
 | |
|             }
 | |
|             if ((Original_edate == null)) {
 | |
|                 this.Adapter.UpdateCommand.Parameters[22].Value = ((object)(1));
 | |
|                 this.Adapter.UpdateCommand.Parameters[23].Value = global::System.DBNull.Value;
 | |
|             }
 | |
|             else {
 | |
|                 this.Adapter.UpdateCommand.Parameters[22].Value = ((object)(0));
 | |
|                 this.Adapter.UpdateCommand.Parameters[23].Value = ((string)(Original_edate));
 | |
|             }
 | |
|             if ((Original_stime == null)) {
 | |
|                 this.Adapter.UpdateCommand.Parameters[24].Value = ((object)(1));
 | |
|                 this.Adapter.UpdateCommand.Parameters[25].Value = global::System.DBNull.Value;
 | |
|             }
 | |
|             else {
 | |
|                 this.Adapter.UpdateCommand.Parameters[24].Value = ((object)(0));
 | |
|                 this.Adapter.UpdateCommand.Parameters[25].Value = ((string)(Original_stime));
 | |
|             }
 | |
|             if ((Original_sday == null)) {
 | |
|                 this.Adapter.UpdateCommand.Parameters[26].Value = ((object)(1));
 | |
|                 this.Adapter.UpdateCommand.Parameters[27].Value = global::System.DBNull.Value;
 | |
|             }
 | |
|             else {
 | |
|                 this.Adapter.UpdateCommand.Parameters[26].Value = ((object)(0));
 | |
|                 this.Adapter.UpdateCommand.Parameters[27].Value = ((byte[])(Original_sday));
 | |
|             }
 | |
|             if ((Original_wuid == null)) {
 | |
|                 throw new global::System.ArgumentNullException("Original_wuid");
 | |
|             }
 | |
|             else {
 | |
|                 this.Adapter.UpdateCommand.Parameters[28].Value = ((string)(Original_wuid));
 | |
|             }
 | |
|             this.Adapter.UpdateCommand.Parameters[29].Value = ((System.DateTime)(Original_wdate));
 | |
|             this.Adapter.UpdateCommand.Parameters[30].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", "16.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<bool> enable, 
 | |
|                     int fidx, 
 | |
|                     string gcode, 
 | |
|                     string fromlist, 
 | |
|                     string tolist, 
 | |
|                     string bcc, 
 | |
|                     string cc, 
 | |
|                     string sdate, 
 | |
|                     string edate, 
 | |
|                     string stime, 
 | |
|                     byte[] sday, 
 | |
|                     string wuid, 
 | |
|                     System.DateTime wdate, 
 | |
|                     string subject, 
 | |
|                     string body, 
 | |
|                     int Original_idx, 
 | |
|                     global::System.Nullable<bool> Original_enable, 
 | |
|                     int Original_fidx, 
 | |
|                     string Original_gcode, 
 | |
|                     string Original_sdate, 
 | |
|                     string Original_edate, 
 | |
|                     string Original_stime, 
 | |
|                     byte[] Original_sday, 
 | |
|                     string Original_wuid, 
 | |
|                     System.DateTime Original_wdate) {
 | |
|             return this.Update(enable, fidx, gcode, fromlist, tolist, bcc, cc, sdate, edate, stime, sday, wuid, wdate, subject, body, Original_idx, Original_enable, Original_fidx, Original_gcode, Original_sdate, Original_edate, Original_stime, Original_sday, Original_wuid, Original_wdate, Original_idx);
 | |
|         }
 | |
|     }
 | |
|     
 | |
|     /// <summary>
 | |
|     ///Represents the connection and commands used to retrieve and save data.
 | |
|     ///</summary>
 | |
|     [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 MailDataTableAdapter : 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", "16.0.0.0")]
 | |
|         public MailDataTableAdapter() {
 | |
|             this.ClearBeforeFill = true;
 | |
|         }
 | |
|         
 | |
|         [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
 | |
|         [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.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", "16.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", "16.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", "16.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", "16.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", "16.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 = "MailData";
 | |
|             tableMapping.ColumnMappings.Add("idx", "idx");
 | |
|             tableMapping.ColumnMappings.Add("project", "project");
 | |
|             tableMapping.ColumnMappings.Add("gcode", "gcode");
 | |
|             tableMapping.ColumnMappings.Add("cate", "cate");
 | |
|             tableMapping.ColumnMappings.Add("pdate", "pdate");
 | |
|             tableMapping.ColumnMappings.Add("subject", "subject");
 | |
|             tableMapping.ColumnMappings.Add("tolist", "tolist");
 | |
|             tableMapping.ColumnMappings.Add("bcc", "bcc");
 | |
|             tableMapping.ColumnMappings.Add("cc", "cc");
 | |
|             tableMapping.ColumnMappings.Add("body", "body");
 | |
|             tableMapping.ColumnMappings.Add("SendOK", "SendOK");
 | |
|             tableMapping.ColumnMappings.Add("SendMsg", "SendMsg");
 | |
|             tableMapping.ColumnMappings.Add("aidx", "aidx");
 | |
|             tableMapping.ColumnMappings.Add("atime", "atime");
 | |
|             tableMapping.ColumnMappings.Add("wuid", "wuid");
 | |
|             tableMapping.ColumnMappings.Add("wdate", "wdate");
 | |
|             tableMapping.ColumnMappings.Add("fromlist", "fromlist");
 | |
|             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 [MailData] WHERE (([idx] = @Original_idx) AND ((@IsNull_project = 1 AND [project] IS NULL) OR ([project] = @Original_project)) AND ([gcode] = @Original_gcode) AND ((@IsNull_cate = 1 AND [cate] IS NULL) OR ([cate] = @Original_cate)) AND ((@IsNull_pdate = 1 AND [pdate] IS NULL) OR ([pdate] = @Original_pdate)) AND ((@IsNull_SendOK = 1 AND [SendOK] IS NULL) OR ([SendOK] = @Original_SendOK)) AND ((@IsNull_SendMsg = 1 AND [SendMsg] IS NULL) OR ([SendMsg] = @Original_SendMsg)) AND ((@IsNull_aidx = 1 AND [aidx] IS NULL) OR ([aidx] = @Original_aidx)) AND ((@IsNull_atime = 1 AND [atime] IS NULL) OR ([atime] = @Original_atime)) AND ([wuid] = @Original_wuid) AND ([wdate] = @Original_wdate))";
 | |
|             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_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("@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_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_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_SendOK", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "SendOK", global::System.Data.DataRowVersion.Original, true, null, "", "", ""));
 | |
|             this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_SendOK", global::System.Data.SqlDbType.Bit, 0, global::System.Data.ParameterDirection.Input, 0, 0, "SendOK", global::System.Data.DataRowVersion.Original, false, null, "", "", ""));
 | |
|             this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@IsNull_SendMsg", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "SendMsg", global::System.Data.DataRowVersion.Original, true, null, "", "", ""));
 | |
|             this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_SendMsg", global::System.Data.SqlDbType.VarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "SendMsg", global::System.Data.DataRowVersion.Original, false, null, "", "", ""));
 | |
|             this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@IsNull_aidx", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "aidx", global::System.Data.DataRowVersion.Original, true, null, "", "", ""));
 | |
|             this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_aidx", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "aidx", global::System.Data.DataRowVersion.Original, false, null, "", "", ""));
 | |
|             this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@IsNull_atime", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "atime", global::System.Data.DataRowVersion.Original, true, null, "", "", ""));
 | |
|             this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_atime", global::System.Data.SqlDbType.VarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "atime", 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.InsertCommand = new global::System.Data.SqlClient.SqlCommand();
 | |
|             this._adapter.InsertCommand.Connection = this.Connection;
 | |
|             this._adapter.InsertCommand.CommandText = @"INSERT INTO [MailData] ([project], [gcode], [cate], [pdate], [subject], [tolist], [bcc], [cc], [body], [SendOK], [SendMsg], [aidx], [atime], [wuid], [wdate], [fromlist]) VALUES (@project, @gcode, @cate, @pdate, @subject, @tolist, @bcc, @cc, @body, @SendOK, @SendMsg, @aidx, @atime, @wuid, @wdate, @fromlist);
 | |
| SELECT idx, project, gcode, cate, pdate, subject, tolist, bcc, cc, body, SendOK, SendMsg, aidx, atime, wuid, wdate, fromlist FROM MailData WHERE (idx = SCOPE_IDENTITY())";
 | |
|             this._adapter.InsertCommand.CommandType = global::System.Data.CommandType.Text;
 | |
|             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("@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("@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("@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("@subject", global::System.Data.SqlDbType.VarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "subject", global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
 | |
|             this._adapter.InsertCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@tolist", global::System.Data.SqlDbType.VarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "tolist", global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
 | |
|             this._adapter.InsertCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@bcc", global::System.Data.SqlDbType.VarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "bcc", global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
 | |
|             this._adapter.InsertCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@cc", global::System.Data.SqlDbType.VarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "cc", global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
 | |
|             this._adapter.InsertCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@body", global::System.Data.SqlDbType.VarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "body", global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
 | |
|             this._adapter.InsertCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@SendOK", global::System.Data.SqlDbType.Bit, 0, global::System.Data.ParameterDirection.Input, 0, 0, "SendOK", global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
 | |
|             this._adapter.InsertCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@SendMsg", global::System.Data.SqlDbType.VarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "SendMsg", global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
 | |
|             this._adapter.InsertCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@aidx", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "aidx", global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
 | |
|             this._adapter.InsertCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@atime", global::System.Data.SqlDbType.VarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "atime", 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("@fromlist", global::System.Data.SqlDbType.VarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "fromlist", 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 [MailData] SET [project] = @project, [gcode] = @gcode, [cate] = @cate, [pdate] = @pdate, [subject] = @subject, [tolist] = @tolist, [bcc] = @bcc, [cc] = @cc, [body] = @body, [SendOK] = @SendOK, [SendMsg] = @SendMsg, [aidx] = @aidx, [atime] = @atime, [wuid] = @wuid, [wdate] = @wdate, [fromlist] = @fromlist WHERE (([idx] = @Original_idx) AND ((@IsNull_project = 1 AND [project] IS NULL) OR ([project] = @Original_project)) AND ([gcode] = @Original_gcode) AND ((@IsNull_cate = 1 AND [cate] IS NULL) OR ([cate] = @Original_cate)) AND ((@IsNull_pdate = 1 AND [pdate] IS NULL) OR ([pdate] = @Original_pdate)) AND ((@IsNull_SendOK = 1 AND [SendOK] IS NULL) OR ([SendOK] = @Original_SendOK)) AND ((@IsNull_SendMsg = 1 AND [SendMsg] IS NULL) OR ([SendMsg] = @Original_SendMsg)) AND ((@IsNull_aidx = 1 AND [aidx] IS NULL) OR ([aidx] = @Original_aidx)) AND ((@IsNull_atime = 1 AND [atime] IS NULL) OR ([atime] = @Original_atime)) AND ([wuid] = @Original_wuid) AND ([wdate] = @Original_wdate));
 | |
| SELECT idx, project, gcode, cate, pdate, subject, tolist, bcc, cc, body, SendOK, SendMsg, aidx, atime, wuid, wdate, fromlist FROM MailData WHERE (idx = @idx)";
 | |
|             this._adapter.UpdateCommand.CommandType = global::System.Data.CommandType.Text;
 | |
|             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("@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("@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("@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("@subject", global::System.Data.SqlDbType.VarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "subject", global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
 | |
|             this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@tolist", global::System.Data.SqlDbType.VarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "tolist", global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
 | |
|             this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@bcc", global::System.Data.SqlDbType.VarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "bcc", global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
 | |
|             this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@cc", global::System.Data.SqlDbType.VarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "cc", global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
 | |
|             this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@body", global::System.Data.SqlDbType.VarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "body", global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
 | |
|             this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@SendOK", global::System.Data.SqlDbType.Bit, 0, global::System.Data.ParameterDirection.Input, 0, 0, "SendOK", global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
 | |
|             this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@SendMsg", global::System.Data.SqlDbType.VarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "SendMsg", global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
 | |
|             this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@aidx", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "aidx", global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
 | |
|             this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@atime", global::System.Data.SqlDbType.VarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "atime", 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("@fromlist", global::System.Data.SqlDbType.VarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "fromlist", 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_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("@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_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_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_SendOK", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "SendOK", global::System.Data.DataRowVersion.Original, true, null, "", "", ""));
 | |
|             this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_SendOK", global::System.Data.SqlDbType.Bit, 0, global::System.Data.ParameterDirection.Input, 0, 0, "SendOK", global::System.Data.DataRowVersion.Original, false, null, "", "", ""));
 | |
|             this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@IsNull_SendMsg", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "SendMsg", global::System.Data.DataRowVersion.Original, true, null, "", "", ""));
 | |
|             this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_SendMsg", global::System.Data.SqlDbType.VarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "SendMsg", global::System.Data.DataRowVersion.Original, false, null, "", "", ""));
 | |
|             this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@IsNull_aidx", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "aidx", global::System.Data.DataRowVersion.Original, true, null, "", "", ""));
 | |
|             this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_aidx", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "aidx", global::System.Data.DataRowVersion.Original, false, null, "", "", ""));
 | |
|             this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@IsNull_atime", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "atime", global::System.Data.DataRowVersion.Original, true, null, "", "", ""));
 | |
|             this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_atime", global::System.Data.SqlDbType.VarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "atime", 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("@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", "16.0.0.0")]
 | |
|         private void InitConnection() {
 | |
|             this._connection = new global::System.Data.SqlClient.SqlConnection();
 | |
|             this._connection.ConnectionString = global::JobReportMailService.Properties.Settings.Default.CS;
 | |
|         }
 | |
|         
 | |
|         [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
 | |
|         [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
 | |
|         private void InitCommandCollection() {
 | |
|             this._commandCollection = new global::System.Data.SqlClient.SqlCommand[4];
 | |
|             this._commandCollection[0] = new global::System.Data.SqlClient.SqlCommand();
 | |
|             this._commandCollection[0].Connection = this.Connection;
 | |
|             this._commandCollection[0].CommandText = "SELECT  idx, project, gcode, cate, pdate, subject, tolist, bcc, cc, body, SendOK," +
 | |
|                 " SendMsg, aidx, atime, wuid, wdate, fromlist\r\nFROM     MailData\r\nWHERE  (ISNULL(" +
 | |
|                 "SendOK, 0) = 0)";
 | |
|             this._commandCollection[0].CommandType = global::System.Data.CommandType.Text;
 | |
|             this._commandCollection[1] = new global::System.Data.SqlClient.SqlCommand();
 | |
|             this._commandCollection[1].Connection = this.Connection;
 | |
|             this._commandCollection[1].CommandText = "SELECT  COUNT(*) AS Expr1\r\nFROM     MailData\r\nWHERE  (aidx = @aidx) AND (pdate = " +
 | |
|                 "@pdate) AND (atime = @atime) AND (cate = @cate)";
 | |
|             this._commandCollection[1].CommandType = global::System.Data.CommandType.Text;
 | |
|             this._commandCollection[1].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@aidx", global::System.Data.SqlDbType.Int, 4, global::System.Data.ParameterDirection.Input, 0, 0, "aidx", global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
 | |
|             this._commandCollection[1].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@pdate", global::System.Data.SqlDbType.VarChar, 10, global::System.Data.ParameterDirection.Input, 0, 0, "pdate", global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
 | |
|             this._commandCollection[1].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@atime", global::System.Data.SqlDbType.VarChar, 20, global::System.Data.ParameterDirection.Input, 0, 0, "atime", global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
 | |
|             this._commandCollection[1].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@cate", global::System.Data.SqlDbType.VarChar, 2, global::System.Data.ParameterDirection.Input, 0, 0, "cate", 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 COUNT(*) as cnt\r\nFROM     MailData\r\nWHERE aidx=@aidx and atime=@atime and " +
 | |
|                 "pdate=@pdate and cate=@cate";
 | |
|             this._commandCollection[2].CommandType = global::System.Data.CommandType.Text;
 | |
|             this._commandCollection[2].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@aidx", global::System.Data.SqlDbType.Int, 4, global::System.Data.ParameterDirection.Input, 0, 0, "aidx", global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
 | |
|             this._commandCollection[2].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@atime", global::System.Data.SqlDbType.VarChar, 20, global::System.Data.ParameterDirection.Input, 0, 0, "atime", global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
 | |
|             this._commandCollection[2].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@pdate", global::System.Data.SqlDbType.VarChar, 10, global::System.Data.ParameterDirection.Input, 0, 0, "pdate", global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
 | |
|             this._commandCollection[2].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@cate", global::System.Data.SqlDbType.VarChar, 20, global::System.Data.ParameterDirection.Input, 0, 0, "cate", global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
 | |
|             this._commandCollection[3] = new global::System.Data.SqlClient.SqlCommand();
 | |
|             this._commandCollection[3].Connection = this.Connection;
 | |
|             this._commandCollection[3].CommandText = "UPDATE MailData\r\nSET        SendOK = 1, SendMsg = @msg\r\nWHERE  (idx = @idx)";
 | |
|             this._commandCollection[3].CommandType = global::System.Data.CommandType.Text;
 | |
|             this._commandCollection[3].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@msg", global::System.Data.SqlDbType.VarChar, 255, global::System.Data.ParameterDirection.Input, 0, 0, "SendMsg", global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
 | |
|             this._commandCollection[3].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.Original, false, null, "", "", ""));
 | |
|         }
 | |
|         
 | |
|         [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
 | |
|         [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.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(DataSet1.MailDataDataTable dataTable) {
 | |
|             this.Adapter.SelectCommand = this.CommandCollection[0];
 | |
|             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", "16.0.0.0")]
 | |
|         [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
 | |
|         [global::System.ComponentModel.DataObjectMethodAttribute(global::System.ComponentModel.DataObjectMethodType.Select, true)]
 | |
|         public virtual DataSet1.MailDataDataTable GetData() {
 | |
|             this.Adapter.SelectCommand = this.CommandCollection[0];
 | |
|             DataSet1.MailDataDataTable dataTable = new DataSet1.MailDataDataTable();
 | |
|             this.Adapter.Fill(dataTable);
 | |
|             return dataTable;
 | |
|         }
 | |
|         
 | |
|         [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
 | |
|         [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
 | |
|         [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
 | |
|         public virtual int Update(DataSet1.MailDataDataTable dataTable) {
 | |
|             return this.Adapter.Update(dataTable);
 | |
|         }
 | |
|         
 | |
|         [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
 | |
|         [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
 | |
|         [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
 | |
|         public virtual int Update(DataSet1 dataSet) {
 | |
|             return this.Adapter.Update(dataSet, "MailData");
 | |
|         }
 | |
|         
 | |
|         [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
 | |
|         [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.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", "16.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", "16.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<int> Original_project, string Original_gcode, string Original_cate, string Original_pdate, global::System.Nullable<bool> Original_SendOK, string Original_SendMsg, global::System.Nullable<int> Original_aidx, string Original_atime, string Original_wuid, System.DateTime Original_wdate) {
 | |
|             this.Adapter.DeleteCommand.Parameters[0].Value = ((int)(Original_idx));
 | |
|             if ((Original_project.HasValue == true)) {
 | |
|                 this.Adapter.DeleteCommand.Parameters[1].Value = ((object)(0));
 | |
|                 this.Adapter.DeleteCommand.Parameters[2].Value = ((int)(Original_project.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_cate == null)) {
 | |
|                 this.Adapter.DeleteCommand.Parameters[4].Value = ((object)(1));
 | |
|                 this.Adapter.DeleteCommand.Parameters[5].Value = global::System.DBNull.Value;
 | |
|             }
 | |
|             else {
 | |
|                 this.Adapter.DeleteCommand.Parameters[4].Value = ((object)(0));
 | |
|                 this.Adapter.DeleteCommand.Parameters[5].Value = ((string)(Original_cate));
 | |
|             }
 | |
|             if ((Original_pdate == 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_pdate));
 | |
|             }
 | |
|             if ((Original_SendOK.HasValue == true)) {
 | |
|                 this.Adapter.DeleteCommand.Parameters[8].Value = ((object)(0));
 | |
|                 this.Adapter.DeleteCommand.Parameters[9].Value = ((bool)(Original_SendOK.Value));
 | |
|             }
 | |
|             else {
 | |
|                 this.Adapter.DeleteCommand.Parameters[8].Value = ((object)(1));
 | |
|                 this.Adapter.DeleteCommand.Parameters[9].Value = global::System.DBNull.Value;
 | |
|             }
 | |
|             if ((Original_SendMsg == 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_SendMsg));
 | |
|             }
 | |
|             if ((Original_aidx.HasValue == true)) {
 | |
|                 this.Adapter.DeleteCommand.Parameters[12].Value = ((object)(0));
 | |
|                 this.Adapter.DeleteCommand.Parameters[13].Value = ((int)(Original_aidx.Value));
 | |
|             }
 | |
|             else {
 | |
|                 this.Adapter.DeleteCommand.Parameters[12].Value = ((object)(1));
 | |
|                 this.Adapter.DeleteCommand.Parameters[13].Value = global::System.DBNull.Value;
 | |
|             }
 | |
|             if ((Original_atime == null)) {
 | |
|                 this.Adapter.DeleteCommand.Parameters[14].Value = ((object)(1));
 | |
|                 this.Adapter.DeleteCommand.Parameters[15].Value = global::System.DBNull.Value;
 | |
|             }
 | |
|             else {
 | |
|                 this.Adapter.DeleteCommand.Parameters[14].Value = ((object)(0));
 | |
|                 this.Adapter.DeleteCommand.Parameters[15].Value = ((string)(Original_atime));
 | |
|             }
 | |
|             if ((Original_wuid == null)) {
 | |
|                 throw new global::System.ArgumentNullException("Original_wuid");
 | |
|             }
 | |
|             else {
 | |
|                 this.Adapter.DeleteCommand.Parameters[16].Value = ((string)(Original_wuid));
 | |
|             }
 | |
|             this.Adapter.DeleteCommand.Parameters[17].Value = ((System.DateTime)(Original_wdate));
 | |
|             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", "16.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<int> project, 
 | |
|                     string gcode, 
 | |
|                     string cate, 
 | |
|                     string pdate, 
 | |
|                     string subject, 
 | |
|                     string tolist, 
 | |
|                     string bcc, 
 | |
|                     string cc, 
 | |
|                     string body, 
 | |
|                     global::System.Nullable<bool> SendOK, 
 | |
|                     string SendMsg, 
 | |
|                     global::System.Nullable<int> aidx, 
 | |
|                     string atime, 
 | |
|                     string wuid, 
 | |
|                     System.DateTime wdate, 
 | |
|                     string fromlist) {
 | |
|             if ((project.HasValue == true)) {
 | |
|                 this.Adapter.InsertCommand.Parameters[0].Value = ((int)(project.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 ((cate == null)) {
 | |
|                 this.Adapter.InsertCommand.Parameters[2].Value = global::System.DBNull.Value;
 | |
|             }
 | |
|             else {
 | |
|                 this.Adapter.InsertCommand.Parameters[2].Value = ((string)(cate));
 | |
|             }
 | |
|             if ((pdate == null)) {
 | |
|                 this.Adapter.InsertCommand.Parameters[3].Value = global::System.DBNull.Value;
 | |
|             }
 | |
|             else {
 | |
|                 this.Adapter.InsertCommand.Parameters[3].Value = ((string)(pdate));
 | |
|             }
 | |
|             if ((subject == null)) {
 | |
|                 this.Adapter.InsertCommand.Parameters[4].Value = global::System.DBNull.Value;
 | |
|             }
 | |
|             else {
 | |
|                 this.Adapter.InsertCommand.Parameters[4].Value = ((string)(subject));
 | |
|             }
 | |
|             if ((tolist == null)) {
 | |
|                 this.Adapter.InsertCommand.Parameters[5].Value = global::System.DBNull.Value;
 | |
|             }
 | |
|             else {
 | |
|                 this.Adapter.InsertCommand.Parameters[5].Value = ((string)(tolist));
 | |
|             }
 | |
|             if ((bcc == null)) {
 | |
|                 this.Adapter.InsertCommand.Parameters[6].Value = global::System.DBNull.Value;
 | |
|             }
 | |
|             else {
 | |
|                 this.Adapter.InsertCommand.Parameters[6].Value = ((string)(bcc));
 | |
|             }
 | |
|             if ((cc == null)) {
 | |
|                 this.Adapter.InsertCommand.Parameters[7].Value = global::System.DBNull.Value;
 | |
|             }
 | |
|             else {
 | |
|                 this.Adapter.InsertCommand.Parameters[7].Value = ((string)(cc));
 | |
|             }
 | |
|             if ((body == null)) {
 | |
|                 this.Adapter.InsertCommand.Parameters[8].Value = global::System.DBNull.Value;
 | |
|             }
 | |
|             else {
 | |
|                 this.Adapter.InsertCommand.Parameters[8].Value = ((string)(body));
 | |
|             }
 | |
|             if ((SendOK.HasValue == true)) {
 | |
|                 this.Adapter.InsertCommand.Parameters[9].Value = ((bool)(SendOK.Value));
 | |
|             }
 | |
|             else {
 | |
|                 this.Adapter.InsertCommand.Parameters[9].Value = global::System.DBNull.Value;
 | |
|             }
 | |
|             if ((SendMsg == null)) {
 | |
|                 this.Adapter.InsertCommand.Parameters[10].Value = global::System.DBNull.Value;
 | |
|             }
 | |
|             else {
 | |
|                 this.Adapter.InsertCommand.Parameters[10].Value = ((string)(SendMsg));
 | |
|             }
 | |
|             if ((aidx.HasValue == true)) {
 | |
|                 this.Adapter.InsertCommand.Parameters[11].Value = ((int)(aidx.Value));
 | |
|             }
 | |
|             else {
 | |
|                 this.Adapter.InsertCommand.Parameters[11].Value = global::System.DBNull.Value;
 | |
|             }
 | |
|             if ((atime == null)) {
 | |
|                 this.Adapter.InsertCommand.Parameters[12].Value = global::System.DBNull.Value;
 | |
|             }
 | |
|             else {
 | |
|                 this.Adapter.InsertCommand.Parameters[12].Value = ((string)(atime));
 | |
|             }
 | |
|             if ((wuid == null)) {
 | |
|                 throw new global::System.ArgumentNullException("wuid");
 | |
|             }
 | |
|             else {
 | |
|                 this.Adapter.InsertCommand.Parameters[13].Value = ((string)(wuid));
 | |
|             }
 | |
|             this.Adapter.InsertCommand.Parameters[14].Value = ((System.DateTime)(wdate));
 | |
|             if ((fromlist == null)) {
 | |
|                 this.Adapter.InsertCommand.Parameters[15].Value = global::System.DBNull.Value;
 | |
|             }
 | |
|             else {
 | |
|                 this.Adapter.InsertCommand.Parameters[15].Value = ((string)(fromlist));
 | |
|             }
 | |
|             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", "16.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<int> project, 
 | |
|                     string gcode, 
 | |
|                     string cate, 
 | |
|                     string pdate, 
 | |
|                     string subject, 
 | |
|                     string tolist, 
 | |
|                     string bcc, 
 | |
|                     string cc, 
 | |
|                     string body, 
 | |
|                     global::System.Nullable<bool> SendOK, 
 | |
|                     string SendMsg, 
 | |
|                     global::System.Nullable<int> aidx, 
 | |
|                     string atime, 
 | |
|                     string wuid, 
 | |
|                     System.DateTime wdate, 
 | |
|                     string fromlist, 
 | |
|                     int Original_idx, 
 | |
|                     global::System.Nullable<int> Original_project, 
 | |
|                     string Original_gcode, 
 | |
|                     string Original_cate, 
 | |
|                     string Original_pdate, 
 | |
|                     global::System.Nullable<bool> Original_SendOK, 
 | |
|                     string Original_SendMsg, 
 | |
|                     global::System.Nullable<int> Original_aidx, 
 | |
|                     string Original_atime, 
 | |
|                     string Original_wuid, 
 | |
|                     System.DateTime Original_wdate, 
 | |
|                     int idx) {
 | |
|             if ((project.HasValue == true)) {
 | |
|                 this.Adapter.UpdateCommand.Parameters[0].Value = ((int)(project.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 ((cate == null)) {
 | |
|                 this.Adapter.UpdateCommand.Parameters[2].Value = global::System.DBNull.Value;
 | |
|             }
 | |
|             else {
 | |
|                 this.Adapter.UpdateCommand.Parameters[2].Value = ((string)(cate));
 | |
|             }
 | |
|             if ((pdate == null)) {
 | |
|                 this.Adapter.UpdateCommand.Parameters[3].Value = global::System.DBNull.Value;
 | |
|             }
 | |
|             else {
 | |
|                 this.Adapter.UpdateCommand.Parameters[3].Value = ((string)(pdate));
 | |
|             }
 | |
|             if ((subject == null)) {
 | |
|                 this.Adapter.UpdateCommand.Parameters[4].Value = global::System.DBNull.Value;
 | |
|             }
 | |
|             else {
 | |
|                 this.Adapter.UpdateCommand.Parameters[4].Value = ((string)(subject));
 | |
|             }
 | |
|             if ((tolist == null)) {
 | |
|                 this.Adapter.UpdateCommand.Parameters[5].Value = global::System.DBNull.Value;
 | |
|             }
 | |
|             else {
 | |
|                 this.Adapter.UpdateCommand.Parameters[5].Value = ((string)(tolist));
 | |
|             }
 | |
|             if ((bcc == null)) {
 | |
|                 this.Adapter.UpdateCommand.Parameters[6].Value = global::System.DBNull.Value;
 | |
|             }
 | |
|             else {
 | |
|                 this.Adapter.UpdateCommand.Parameters[6].Value = ((string)(bcc));
 | |
|             }
 | |
|             if ((cc == null)) {
 | |
|                 this.Adapter.UpdateCommand.Parameters[7].Value = global::System.DBNull.Value;
 | |
|             }
 | |
|             else {
 | |
|                 this.Adapter.UpdateCommand.Parameters[7].Value = ((string)(cc));
 | |
|             }
 | |
|             if ((body == null)) {
 | |
|                 this.Adapter.UpdateCommand.Parameters[8].Value = global::System.DBNull.Value;
 | |
|             }
 | |
|             else {
 | |
|                 this.Adapter.UpdateCommand.Parameters[8].Value = ((string)(body));
 | |
|             }
 | |
|             if ((SendOK.HasValue == true)) {
 | |
|                 this.Adapter.UpdateCommand.Parameters[9].Value = ((bool)(SendOK.Value));
 | |
|             }
 | |
|             else {
 | |
|                 this.Adapter.UpdateCommand.Parameters[9].Value = global::System.DBNull.Value;
 | |
|             }
 | |
|             if ((SendMsg == null)) {
 | |
|                 this.Adapter.UpdateCommand.Parameters[10].Value = global::System.DBNull.Value;
 | |
|             }
 | |
|             else {
 | |
|                 this.Adapter.UpdateCommand.Parameters[10].Value = ((string)(SendMsg));
 | |
|             }
 | |
|             if ((aidx.HasValue == true)) {
 | |
|                 this.Adapter.UpdateCommand.Parameters[11].Value = ((int)(aidx.Value));
 | |
|             }
 | |
|             else {
 | |
|                 this.Adapter.UpdateCommand.Parameters[11].Value = global::System.DBNull.Value;
 | |
|             }
 | |
|             if ((atime == null)) {
 | |
|                 this.Adapter.UpdateCommand.Parameters[12].Value = global::System.DBNull.Value;
 | |
|             }
 | |
|             else {
 | |
|                 this.Adapter.UpdateCommand.Parameters[12].Value = ((string)(atime));
 | |
|             }
 | |
|             if ((wuid == null)) {
 | |
|                 throw new global::System.ArgumentNullException("wuid");
 | |
|             }
 | |
|             else {
 | |
|                 this.Adapter.UpdateCommand.Parameters[13].Value = ((string)(wuid));
 | |
|             }
 | |
|             this.Adapter.UpdateCommand.Parameters[14].Value = ((System.DateTime)(wdate));
 | |
|             if ((fromlist == null)) {
 | |
|                 this.Adapter.UpdateCommand.Parameters[15].Value = global::System.DBNull.Value;
 | |
|             }
 | |
|             else {
 | |
|                 this.Adapter.UpdateCommand.Parameters[15].Value = ((string)(fromlist));
 | |
|             }
 | |
|             this.Adapter.UpdateCommand.Parameters[16].Value = ((int)(Original_idx));
 | |
|             if ((Original_project.HasValue == true)) {
 | |
|                 this.Adapter.UpdateCommand.Parameters[17].Value = ((object)(0));
 | |
|                 this.Adapter.UpdateCommand.Parameters[18].Value = ((int)(Original_project.Value));
 | |
|             }
 | |
|             else {
 | |
|                 this.Adapter.UpdateCommand.Parameters[17].Value = ((object)(1));
 | |
|                 this.Adapter.UpdateCommand.Parameters[18].Value = global::System.DBNull.Value;
 | |
|             }
 | |
|             if ((Original_gcode == null)) {
 | |
|                 throw new global::System.ArgumentNullException("Original_gcode");
 | |
|             }
 | |
|             else {
 | |
|                 this.Adapter.UpdateCommand.Parameters[19].Value = ((string)(Original_gcode));
 | |
|             }
 | |
|             if ((Original_cate == null)) {
 | |
|                 this.Adapter.UpdateCommand.Parameters[20].Value = ((object)(1));
 | |
|                 this.Adapter.UpdateCommand.Parameters[21].Value = global::System.DBNull.Value;
 | |
|             }
 | |
|             else {
 | |
|                 this.Adapter.UpdateCommand.Parameters[20].Value = ((object)(0));
 | |
|                 this.Adapter.UpdateCommand.Parameters[21].Value = ((string)(Original_cate));
 | |
|             }
 | |
|             if ((Original_pdate == null)) {
 | |
|                 this.Adapter.UpdateCommand.Parameters[22].Value = ((object)(1));
 | |
|                 this.Adapter.UpdateCommand.Parameters[23].Value = global::System.DBNull.Value;
 | |
|             }
 | |
|             else {
 | |
|                 this.Adapter.UpdateCommand.Parameters[22].Value = ((object)(0));
 | |
|                 this.Adapter.UpdateCommand.Parameters[23].Value = ((string)(Original_pdate));
 | |
|             }
 | |
|             if ((Original_SendOK.HasValue == true)) {
 | |
|                 this.Adapter.UpdateCommand.Parameters[24].Value = ((object)(0));
 | |
|                 this.Adapter.UpdateCommand.Parameters[25].Value = ((bool)(Original_SendOK.Value));
 | |
|             }
 | |
|             else {
 | |
|                 this.Adapter.UpdateCommand.Parameters[24].Value = ((object)(1));
 | |
|                 this.Adapter.UpdateCommand.Parameters[25].Value = global::System.DBNull.Value;
 | |
|             }
 | |
|             if ((Original_SendMsg == null)) {
 | |
|                 this.Adapter.UpdateCommand.Parameters[26].Value = ((object)(1));
 | |
|                 this.Adapter.UpdateCommand.Parameters[27].Value = global::System.DBNull.Value;
 | |
|             }
 | |
|             else {
 | |
|                 this.Adapter.UpdateCommand.Parameters[26].Value = ((object)(0));
 | |
|                 this.Adapter.UpdateCommand.Parameters[27].Value = ((string)(Original_SendMsg));
 | |
|             }
 | |
|             if ((Original_aidx.HasValue == true)) {
 | |
|                 this.Adapter.UpdateCommand.Parameters[28].Value = ((object)(0));
 | |
|                 this.Adapter.UpdateCommand.Parameters[29].Value = ((int)(Original_aidx.Value));
 | |
|             }
 | |
|             else {
 | |
|                 this.Adapter.UpdateCommand.Parameters[28].Value = ((object)(1));
 | |
|                 this.Adapter.UpdateCommand.Parameters[29].Value = global::System.DBNull.Value;
 | |
|             }
 | |
|             if ((Original_atime == null)) {
 | |
|                 this.Adapter.UpdateCommand.Parameters[30].Value = ((object)(1));
 | |
|                 this.Adapter.UpdateCommand.Parameters[31].Value = global::System.DBNull.Value;
 | |
|             }
 | |
|             else {
 | |
|                 this.Adapter.UpdateCommand.Parameters[30].Value = ((object)(0));
 | |
|                 this.Adapter.UpdateCommand.Parameters[31].Value = ((string)(Original_atime));
 | |
|             }
 | |
|             if ((Original_wuid == null)) {
 | |
|                 throw new global::System.ArgumentNullException("Original_wuid");
 | |
|             }
 | |
|             else {
 | |
|                 this.Adapter.UpdateCommand.Parameters[32].Value = ((string)(Original_wuid));
 | |
|             }
 | |
|             this.Adapter.UpdateCommand.Parameters[33].Value = ((System.DateTime)(Original_wdate));
 | |
|             this.Adapter.UpdateCommand.Parameters[34].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", "16.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<int> project, 
 | |
|                     string gcode, 
 | |
|                     string cate, 
 | |
|                     string pdate, 
 | |
|                     string subject, 
 | |
|                     string tolist, 
 | |
|                     string bcc, 
 | |
|                     string cc, 
 | |
|                     string body, 
 | |
|                     global::System.Nullable<bool> SendOK, 
 | |
|                     string SendMsg, 
 | |
|                     global::System.Nullable<int> aidx, 
 | |
|                     string atime, 
 | |
|                     string wuid, 
 | |
|                     System.DateTime wdate, 
 | |
|                     string fromlist, 
 | |
|                     int Original_idx, 
 | |
|                     global::System.Nullable<int> Original_project, 
 | |
|                     string Original_gcode, 
 | |
|                     string Original_cate, 
 | |
|                     string Original_pdate, 
 | |
|                     global::System.Nullable<bool> Original_SendOK, 
 | |
|                     string Original_SendMsg, 
 | |
|                     global::System.Nullable<int> Original_aidx, 
 | |
|                     string Original_atime, 
 | |
|                     string Original_wuid, 
 | |
|                     System.DateTime Original_wdate) {
 | |
|             return this.Update(project, gcode, cate, pdate, subject, tolist, bcc, cc, body, SendOK, SendMsg, aidx, atime, wuid, wdate, fromlist, Original_idx, Original_project, Original_gcode, Original_cate, Original_pdate, Original_SendOK, Original_SendMsg, Original_aidx, Original_atime, Original_wuid, Original_wdate, Original_idx);
 | |
|         }
 | |
|         
 | |
|         [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
 | |
|         [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
 | |
|         [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
 | |
|         public virtual global::System.Nullable<int> CheckAutoExist(global::System.Nullable<int> aidx, string pdate, string atime, string cate) {
 | |
|             global::System.Data.SqlClient.SqlCommand command = this.CommandCollection[1];
 | |
|             if ((aidx.HasValue == true)) {
 | |
|                 command.Parameters[0].Value = ((int)(aidx.Value));
 | |
|             }
 | |
|             else {
 | |
|                 command.Parameters[0].Value = global::System.DBNull.Value;
 | |
|             }
 | |
|             if ((pdate == null)) {
 | |
|                 command.Parameters[1].Value = global::System.DBNull.Value;
 | |
|             }
 | |
|             else {
 | |
|                 command.Parameters[1].Value = ((string)(pdate));
 | |
|             }
 | |
|             if ((atime == null)) {
 | |
|                 command.Parameters[2].Value = global::System.DBNull.Value;
 | |
|             }
 | |
|             else {
 | |
|                 command.Parameters[2].Value = ((string)(atime));
 | |
|             }
 | |
|             if ((cate == null)) {
 | |
|                 command.Parameters[3].Value = global::System.DBNull.Value;
 | |
|             }
 | |
|             else {
 | |
|                 command.Parameters[3].Value = ((string)(cate));
 | |
|             }
 | |
|             global::System.Data.ConnectionState previousConnectionState = command.Connection.State;
 | |
|             if (((command.Connection.State & global::System.Data.ConnectionState.Open) 
 | |
|                         != global::System.Data.ConnectionState.Open)) {
 | |
|                 command.Connection.Open();
 | |
|             }
 | |
|             object returnValue;
 | |
|             try {
 | |
|                 returnValue = command.ExecuteScalar();
 | |
|             }
 | |
|             finally {
 | |
|                 if ((previousConnectionState == global::System.Data.ConnectionState.Closed)) {
 | |
|                     command.Connection.Close();
 | |
|                 }
 | |
|             }
 | |
|             if (((returnValue == null) 
 | |
|                         || (returnValue.GetType() == typeof(global::System.DBNull)))) {
 | |
|                 return new global::System.Nullable<int>();
 | |
|             }
 | |
|             else {
 | |
|                 return new global::System.Nullable<int>(((int)(returnValue)));
 | |
|             }
 | |
|         }
 | |
|         
 | |
|         [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
 | |
|         [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
 | |
|         [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
 | |
|         public virtual global::System.Nullable<int> FindAutoData(global::System.Nullable<int> aidx, string atime, string pdate, string cate) {
 | |
|             global::System.Data.SqlClient.SqlCommand command = this.CommandCollection[2];
 | |
|             if ((aidx.HasValue == true)) {
 | |
|                 command.Parameters[0].Value = ((int)(aidx.Value));
 | |
|             }
 | |
|             else {
 | |
|                 command.Parameters[0].Value = global::System.DBNull.Value;
 | |
|             }
 | |
|             if ((atime == null)) {
 | |
|                 command.Parameters[1].Value = global::System.DBNull.Value;
 | |
|             }
 | |
|             else {
 | |
|                 command.Parameters[1].Value = ((string)(atime));
 | |
|             }
 | |
|             if ((pdate == null)) {
 | |
|                 command.Parameters[2].Value = global::System.DBNull.Value;
 | |
|             }
 | |
|             else {
 | |
|                 command.Parameters[2].Value = ((string)(pdate));
 | |
|             }
 | |
|             if ((cate == null)) {
 | |
|                 command.Parameters[3].Value = global::System.DBNull.Value;
 | |
|             }
 | |
|             else {
 | |
|                 command.Parameters[3].Value = ((string)(cate));
 | |
|             }
 | |
|             global::System.Data.ConnectionState previousConnectionState = command.Connection.State;
 | |
|             if (((command.Connection.State & global::System.Data.ConnectionState.Open) 
 | |
|                         != global::System.Data.ConnectionState.Open)) {
 | |
|                 command.Connection.Open();
 | |
|             }
 | |
|             object returnValue;
 | |
|             try {
 | |
|                 returnValue = command.ExecuteScalar();
 | |
|             }
 | |
|             finally {
 | |
|                 if ((previousConnectionState == global::System.Data.ConnectionState.Closed)) {
 | |
|                     command.Connection.Close();
 | |
|                 }
 | |
|             }
 | |
|             if (((returnValue == null) 
 | |
|                         || (returnValue.GetType() == typeof(global::System.DBNull)))) {
 | |
|                 return new global::System.Nullable<int>();
 | |
|             }
 | |
|             else {
 | |
|                 return new global::System.Nullable<int>(((int)(returnValue)));
 | |
|             }
 | |
|         }
 | |
|         
 | |
|         [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
 | |
|         [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
 | |
|         [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
 | |
|         public virtual int UpdateSendOK(string msg, int idx) {
 | |
|             global::System.Data.SqlClient.SqlCommand command = this.CommandCollection[3];
 | |
|             if ((msg == null)) {
 | |
|                 command.Parameters[0].Value = global::System.DBNull.Value;
 | |
|             }
 | |
|             else {
 | |
|                 command.Parameters[0].Value = ((string)(msg));
 | |
|             }
 | |
|             command.Parameters[1].Value = ((int)(idx));
 | |
|             global::System.Data.ConnectionState previousConnectionState = command.Connection.State;
 | |
|             if (((command.Connection.State & global::System.Data.ConnectionState.Open) 
 | |
|                         != global::System.Data.ConnectionState.Open)) {
 | |
|                 command.Connection.Open();
 | |
|             }
 | |
|             int returnValue;
 | |
|             try {
 | |
|                 returnValue = command.ExecuteNonQuery();
 | |
|             }
 | |
|             finally {
 | |
|                 if ((previousConnectionState == global::System.Data.ConnectionState.Closed)) {
 | |
|                     command.Connection.Close();
 | |
|                 }
 | |
|             }
 | |
|             return returnValue;
 | |
|         }
 | |
|     }
 | |
|     
 | |
|     /// <summary>
 | |
|     ///Represents the connection and commands used to retrieve and save data.
 | |
|     ///</summary>
 | |
|     [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 MailFormTableAdapter : 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", "16.0.0.0")]
 | |
|         public MailFormTableAdapter() {
 | |
|             this.ClearBeforeFill = true;
 | |
|         }
 | |
|         
 | |
|         [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
 | |
|         [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.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", "16.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", "16.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", "16.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", "16.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", "16.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 = "MailForm";
 | |
|             tableMapping.ColumnMappings.Add("idx", "idx");
 | |
|             tableMapping.ColumnMappings.Add("gcode", "gcode");
 | |
|             tableMapping.ColumnMappings.Add("cate", "cate");
 | |
|             tableMapping.ColumnMappings.Add("title", "title");
 | |
|             tableMapping.ColumnMappings.Add("tolist", "tolist");
 | |
|             tableMapping.ColumnMappings.Add("bcc", "bcc");
 | |
|             tableMapping.ColumnMappings.Add("cc", "cc");
 | |
|             tableMapping.ColumnMappings.Add("subject", "subject");
 | |
|             tableMapping.ColumnMappings.Add("tail", "tail");
 | |
|             tableMapping.ColumnMappings.Add("body", "body");
 | |
|             tableMapping.ColumnMappings.Add("selfTo", "selfTo");
 | |
|             tableMapping.ColumnMappings.Add("selfCC", "selfCC");
 | |
|             tableMapping.ColumnMappings.Add("selfBCC", "selfBCC");
 | |
|             tableMapping.ColumnMappings.Add("wuid", "wuid");
 | |
|             tableMapping.ColumnMappings.Add("wdate", "wdate");
 | |
|             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 [MailForm] WHERE (([idx] = @Original_idx) AND ([gcode] = @Original_gcode) AND ((@IsNull_cate = 1 AND [cate] IS NULL) OR ([cate] = @Original_cate)) AND ((@IsNull_title = 1 AND [title] IS NULL) OR ([title] = @Original_title)) AND ((@IsNull_selfTo = 1 AND [selfTo] IS NULL) OR ([selfTo] = @Original_selfTo)) AND ((@IsNull_selfCC = 1 AND [selfCC] IS NULL) OR ([selfCC] = @Original_selfCC)) AND ((@IsNull_selfBCC = 1 AND [selfBCC] IS NULL) OR ([selfBCC] = @Original_selfBCC)) AND ([wuid] = @Original_wuid) AND ([wdate] = @Original_wdate))";
 | |
|             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("@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_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_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_selfTo", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "selfTo", global::System.Data.DataRowVersion.Original, true, null, "", "", ""));
 | |
|             this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_selfTo", global::System.Data.SqlDbType.Bit, 0, global::System.Data.ParameterDirection.Input, 0, 0, "selfTo", global::System.Data.DataRowVersion.Original, false, null, "", "", ""));
 | |
|             this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@IsNull_selfCC", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "selfCC", global::System.Data.DataRowVersion.Original, true, null, "", "", ""));
 | |
|             this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_selfCC", global::System.Data.SqlDbType.Bit, 0, global::System.Data.ParameterDirection.Input, 0, 0, "selfCC", global::System.Data.DataRowVersion.Original, false, null, "", "", ""));
 | |
|             this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@IsNull_selfBCC", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "selfBCC", global::System.Data.DataRowVersion.Original, true, null, "", "", ""));
 | |
|             this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_selfBCC", global::System.Data.SqlDbType.Bit, 0, global::System.Data.ParameterDirection.Input, 0, 0, "selfBCC", 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.InsertCommand = new global::System.Data.SqlClient.SqlCommand();
 | |
|             this._adapter.InsertCommand.Connection = this.Connection;
 | |
|             this._adapter.InsertCommand.CommandText = @"INSERT INTO [MailForm] ([gcode], [cate], [title], [tolist], [bcc], [cc], [subject], [tail], [body], [selfTo], [selfCC], [selfBCC], [wuid], [wdate]) VALUES (@gcode, @cate, @title, @tolist, @bcc, @cc, @subject, @tail, @body, @selfTo, @selfCC, @selfBCC, @wuid, @wdate);
 | |
| SELECT idx, gcode, cate, title, tolist, bcc, cc, subject, tail, body, selfTo, selfCC, selfBCC, wuid, wdate FROM MailForm WHERE (idx = SCOPE_IDENTITY())";
 | |
|             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("@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("@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("@tolist", global::System.Data.SqlDbType.VarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "tolist", global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
 | |
|             this._adapter.InsertCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@bcc", global::System.Data.SqlDbType.VarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "bcc", global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
 | |
|             this._adapter.InsertCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@cc", global::System.Data.SqlDbType.VarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "cc", global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
 | |
|             this._adapter.InsertCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@subject", global::System.Data.SqlDbType.VarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "subject", global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
 | |
|             this._adapter.InsertCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@tail", global::System.Data.SqlDbType.VarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "tail", global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
 | |
|             this._adapter.InsertCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@body", global::System.Data.SqlDbType.VarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "body", global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
 | |
|             this._adapter.InsertCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@selfTo", global::System.Data.SqlDbType.Bit, 0, global::System.Data.ParameterDirection.Input, 0, 0, "selfTo", global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
 | |
|             this._adapter.InsertCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@selfCC", global::System.Data.SqlDbType.Bit, 0, global::System.Data.ParameterDirection.Input, 0, 0, "selfCC", global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
 | |
|             this._adapter.InsertCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@selfBCC", global::System.Data.SqlDbType.Bit, 0, global::System.Data.ParameterDirection.Input, 0, 0, "selfBCC", 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.UpdateCommand = new global::System.Data.SqlClient.SqlCommand();
 | |
|             this._adapter.UpdateCommand.Connection = this.Connection;
 | |
|             this._adapter.UpdateCommand.CommandText = @"UPDATE [MailForm] SET [gcode] = @gcode, [cate] = @cate, [title] = @title, [tolist] = @tolist, [bcc] = @bcc, [cc] = @cc, [subject] = @subject, [tail] = @tail, [body] = @body, [selfTo] = @selfTo, [selfCC] = @selfCC, [selfBCC] = @selfBCC, [wuid] = @wuid, [wdate] = @wdate WHERE (([idx] = @Original_idx) AND ([gcode] = @Original_gcode) AND ((@IsNull_cate = 1 AND [cate] IS NULL) OR ([cate] = @Original_cate)) AND ((@IsNull_title = 1 AND [title] IS NULL) OR ([title] = @Original_title)) AND ((@IsNull_selfTo = 1 AND [selfTo] IS NULL) OR ([selfTo] = @Original_selfTo)) AND ((@IsNull_selfCC = 1 AND [selfCC] IS NULL) OR ([selfCC] = @Original_selfCC)) AND ((@IsNull_selfBCC = 1 AND [selfBCC] IS NULL) OR ([selfBCC] = @Original_selfBCC)) AND ([wuid] = @Original_wuid) AND ([wdate] = @Original_wdate));
 | |
| SELECT idx, gcode, cate, title, tolist, bcc, cc, subject, tail, body, selfTo, selfCC, selfBCC, wuid, wdate FROM MailForm WHERE (idx = @idx)";
 | |
|             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("@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("@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("@tolist", global::System.Data.SqlDbType.VarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "tolist", global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
 | |
|             this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@bcc", global::System.Data.SqlDbType.VarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "bcc", global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
 | |
|             this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@cc", global::System.Data.SqlDbType.VarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "cc", global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
 | |
|             this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@subject", global::System.Data.SqlDbType.VarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "subject", global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
 | |
|             this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@tail", global::System.Data.SqlDbType.VarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "tail", global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
 | |
|             this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@body", global::System.Data.SqlDbType.VarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "body", global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
 | |
|             this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@selfTo", global::System.Data.SqlDbType.Bit, 0, global::System.Data.ParameterDirection.Input, 0, 0, "selfTo", global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
 | |
|             this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@selfCC", global::System.Data.SqlDbType.Bit, 0, global::System.Data.ParameterDirection.Input, 0, 0, "selfCC", global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
 | |
|             this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@selfBCC", global::System.Data.SqlDbType.Bit, 0, global::System.Data.ParameterDirection.Input, 0, 0, "selfBCC", 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("@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("@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_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_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_selfTo", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "selfTo", global::System.Data.DataRowVersion.Original, true, null, "", "", ""));
 | |
|             this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_selfTo", global::System.Data.SqlDbType.Bit, 0, global::System.Data.ParameterDirection.Input, 0, 0, "selfTo", global::System.Data.DataRowVersion.Original, false, null, "", "", ""));
 | |
|             this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@IsNull_selfCC", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "selfCC", global::System.Data.DataRowVersion.Original, true, null, "", "", ""));
 | |
|             this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_selfCC", global::System.Data.SqlDbType.Bit, 0, global::System.Data.ParameterDirection.Input, 0, 0, "selfCC", global::System.Data.DataRowVersion.Original, false, null, "", "", ""));
 | |
|             this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@IsNull_selfBCC", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "selfBCC", global::System.Data.DataRowVersion.Original, true, null, "", "", ""));
 | |
|             this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_selfBCC", global::System.Data.SqlDbType.Bit, 0, global::System.Data.ParameterDirection.Input, 0, 0, "selfBCC", 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("@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", "16.0.0.0")]
 | |
|         private void InitConnection() {
 | |
|             this._connection = new global::System.Data.SqlClient.SqlConnection();
 | |
|             this._connection.ConnectionString = global::JobReportMailService.Properties.Settings.Default.CS;
 | |
|         }
 | |
|         
 | |
|         [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
 | |
|         [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.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  MailForm.*\r\nFROM     MailForm";
 | |
|             this._commandCollection[0].CommandType = global::System.Data.CommandType.Text;
 | |
|         }
 | |
|         
 | |
|         [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
 | |
|         [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.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(DataSet1.MailFormDataTable dataTable) {
 | |
|             this.Adapter.SelectCommand = this.CommandCollection[0];
 | |
|             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", "16.0.0.0")]
 | |
|         [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
 | |
|         [global::System.ComponentModel.DataObjectMethodAttribute(global::System.ComponentModel.DataObjectMethodType.Select, true)]
 | |
|         public virtual DataSet1.MailFormDataTable GetData() {
 | |
|             this.Adapter.SelectCommand = this.CommandCollection[0];
 | |
|             DataSet1.MailFormDataTable dataTable = new DataSet1.MailFormDataTable();
 | |
|             this.Adapter.Fill(dataTable);
 | |
|             return dataTable;
 | |
|         }
 | |
|         
 | |
|         [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
 | |
|         [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
 | |
|         [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
 | |
|         public virtual int Update(DataSet1.MailFormDataTable dataTable) {
 | |
|             return this.Adapter.Update(dataTable);
 | |
|         }
 | |
|         
 | |
|         [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
 | |
|         [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
 | |
|         [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
 | |
|         public virtual int Update(DataSet1 dataSet) {
 | |
|             return this.Adapter.Update(dataSet, "MailForm");
 | |
|         }
 | |
|         
 | |
|         [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
 | |
|         [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.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", "16.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", "16.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, string Original_cate, string Original_title, global::System.Nullable<bool> Original_selfTo, global::System.Nullable<bool> Original_selfCC, global::System.Nullable<bool> Original_selfBCC, string Original_wuid, System.DateTime Original_wdate) {
 | |
|             this.Adapter.DeleteCommand.Parameters[0].Value = ((int)(Original_idx));
 | |
|             if ((Original_gcode == null)) {
 | |
|                 throw new global::System.ArgumentNullException("Original_gcode");
 | |
|             }
 | |
|             else {
 | |
|                 this.Adapter.DeleteCommand.Parameters[1].Value = ((string)(Original_gcode));
 | |
|             }
 | |
|             if ((Original_cate == null)) {
 | |
|                 this.Adapter.DeleteCommand.Parameters[2].Value = ((object)(1));
 | |
|                 this.Adapter.DeleteCommand.Parameters[3].Value = global::System.DBNull.Value;
 | |
|             }
 | |
|             else {
 | |
|                 this.Adapter.DeleteCommand.Parameters[2].Value = ((object)(0));
 | |
|                 this.Adapter.DeleteCommand.Parameters[3].Value = ((string)(Original_cate));
 | |
|             }
 | |
|             if ((Original_title == null)) {
 | |
|                 this.Adapter.DeleteCommand.Parameters[4].Value = ((object)(1));
 | |
|                 this.Adapter.DeleteCommand.Parameters[5].Value = global::System.DBNull.Value;
 | |
|             }
 | |
|             else {
 | |
|                 this.Adapter.DeleteCommand.Parameters[4].Value = ((object)(0));
 | |
|                 this.Adapter.DeleteCommand.Parameters[5].Value = ((string)(Original_title));
 | |
|             }
 | |
|             if ((Original_selfTo.HasValue == true)) {
 | |
|                 this.Adapter.DeleteCommand.Parameters[6].Value = ((object)(0));
 | |
|                 this.Adapter.DeleteCommand.Parameters[7].Value = ((bool)(Original_selfTo.Value));
 | |
|             }
 | |
|             else {
 | |
|                 this.Adapter.DeleteCommand.Parameters[6].Value = ((object)(1));
 | |
|                 this.Adapter.DeleteCommand.Parameters[7].Value = global::System.DBNull.Value;
 | |
|             }
 | |
|             if ((Original_selfCC.HasValue == true)) {
 | |
|                 this.Adapter.DeleteCommand.Parameters[8].Value = ((object)(0));
 | |
|                 this.Adapter.DeleteCommand.Parameters[9].Value = ((bool)(Original_selfCC.Value));
 | |
|             }
 | |
|             else {
 | |
|                 this.Adapter.DeleteCommand.Parameters[8].Value = ((object)(1));
 | |
|                 this.Adapter.DeleteCommand.Parameters[9].Value = global::System.DBNull.Value;
 | |
|             }
 | |
|             if ((Original_selfBCC.HasValue == true)) {
 | |
|                 this.Adapter.DeleteCommand.Parameters[10].Value = ((object)(0));
 | |
|                 this.Adapter.DeleteCommand.Parameters[11].Value = ((bool)(Original_selfBCC.Value));
 | |
|             }
 | |
|             else {
 | |
|                 this.Adapter.DeleteCommand.Parameters[10].Value = ((object)(1));
 | |
|                 this.Adapter.DeleteCommand.Parameters[11].Value = global::System.DBNull.Value;
 | |
|             }
 | |
|             if ((Original_wuid == null)) {
 | |
|                 throw new global::System.ArgumentNullException("Original_wuid");
 | |
|             }
 | |
|             else {
 | |
|                 this.Adapter.DeleteCommand.Parameters[12].Value = ((string)(Original_wuid));
 | |
|             }
 | |
|             this.Adapter.DeleteCommand.Parameters[13].Value = ((System.DateTime)(Original_wdate));
 | |
|             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", "16.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, string cate, string title, string tolist, string bcc, string cc, string subject, string tail, string body, global::System.Nullable<bool> selfTo, global::System.Nullable<bool> selfCC, global::System.Nullable<bool> selfBCC, string wuid, System.DateTime wdate) {
 | |
|             if ((gcode == null)) {
 | |
|                 throw new global::System.ArgumentNullException("gcode");
 | |
|             }
 | |
|             else {
 | |
|                 this.Adapter.InsertCommand.Parameters[0].Value = ((string)(gcode));
 | |
|             }
 | |
|             if ((cate == null)) {
 | |
|                 this.Adapter.InsertCommand.Parameters[1].Value = global::System.DBNull.Value;
 | |
|             }
 | |
|             else {
 | |
|                 this.Adapter.InsertCommand.Parameters[1].Value = ((string)(cate));
 | |
|             }
 | |
|             if ((title == null)) {
 | |
|                 this.Adapter.InsertCommand.Parameters[2].Value = global::System.DBNull.Value;
 | |
|             }
 | |
|             else {
 | |
|                 this.Adapter.InsertCommand.Parameters[2].Value = ((string)(title));
 | |
|             }
 | |
|             if ((tolist == null)) {
 | |
|                 this.Adapter.InsertCommand.Parameters[3].Value = global::System.DBNull.Value;
 | |
|             }
 | |
|             else {
 | |
|                 this.Adapter.InsertCommand.Parameters[3].Value = ((string)(tolist));
 | |
|             }
 | |
|             if ((bcc == null)) {
 | |
|                 this.Adapter.InsertCommand.Parameters[4].Value = global::System.DBNull.Value;
 | |
|             }
 | |
|             else {
 | |
|                 this.Adapter.InsertCommand.Parameters[4].Value = ((string)(bcc));
 | |
|             }
 | |
|             if ((cc == null)) {
 | |
|                 this.Adapter.InsertCommand.Parameters[5].Value = global::System.DBNull.Value;
 | |
|             }
 | |
|             else {
 | |
|                 this.Adapter.InsertCommand.Parameters[5].Value = ((string)(cc));
 | |
|             }
 | |
|             if ((subject == null)) {
 | |
|                 this.Adapter.InsertCommand.Parameters[6].Value = global::System.DBNull.Value;
 | |
|             }
 | |
|             else {
 | |
|                 this.Adapter.InsertCommand.Parameters[6].Value = ((string)(subject));
 | |
|             }
 | |
|             if ((tail == null)) {
 | |
|                 this.Adapter.InsertCommand.Parameters[7].Value = global::System.DBNull.Value;
 | |
|             }
 | |
|             else {
 | |
|                 this.Adapter.InsertCommand.Parameters[7].Value = ((string)(tail));
 | |
|             }
 | |
|             if ((body == null)) {
 | |
|                 this.Adapter.InsertCommand.Parameters[8].Value = global::System.DBNull.Value;
 | |
|             }
 | |
|             else {
 | |
|                 this.Adapter.InsertCommand.Parameters[8].Value = ((string)(body));
 | |
|             }
 | |
|             if ((selfTo.HasValue == true)) {
 | |
|                 this.Adapter.InsertCommand.Parameters[9].Value = ((bool)(selfTo.Value));
 | |
|             }
 | |
|             else {
 | |
|                 this.Adapter.InsertCommand.Parameters[9].Value = global::System.DBNull.Value;
 | |
|             }
 | |
|             if ((selfCC.HasValue == true)) {
 | |
|                 this.Adapter.InsertCommand.Parameters[10].Value = ((bool)(selfCC.Value));
 | |
|             }
 | |
|             else {
 | |
|                 this.Adapter.InsertCommand.Parameters[10].Value = global::System.DBNull.Value;
 | |
|             }
 | |
|             if ((selfBCC.HasValue == true)) {
 | |
|                 this.Adapter.InsertCommand.Parameters[11].Value = ((bool)(selfBCC.Value));
 | |
|             }
 | |
|             else {
 | |
|                 this.Adapter.InsertCommand.Parameters[11].Value = global::System.DBNull.Value;
 | |
|             }
 | |
|             if ((wuid == null)) {
 | |
|                 throw new global::System.ArgumentNullException("wuid");
 | |
|             }
 | |
|             else {
 | |
|                 this.Adapter.InsertCommand.Parameters[12].Value = ((string)(wuid));
 | |
|             }
 | |
|             this.Adapter.InsertCommand.Parameters[13].Value = ((System.DateTime)(wdate));
 | |
|             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", "16.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, 
 | |
|                     string cate, 
 | |
|                     string title, 
 | |
|                     string tolist, 
 | |
|                     string bcc, 
 | |
|                     string cc, 
 | |
|                     string subject, 
 | |
|                     string tail, 
 | |
|                     string body, 
 | |
|                     global::System.Nullable<bool> selfTo, 
 | |
|                     global::System.Nullable<bool> selfCC, 
 | |
|                     global::System.Nullable<bool> selfBCC, 
 | |
|                     string wuid, 
 | |
|                     System.DateTime wdate, 
 | |
|                     int Original_idx, 
 | |
|                     string Original_gcode, 
 | |
|                     string Original_cate, 
 | |
|                     string Original_title, 
 | |
|                     global::System.Nullable<bool> Original_selfTo, 
 | |
|                     global::System.Nullable<bool> Original_selfCC, 
 | |
|                     global::System.Nullable<bool> Original_selfBCC, 
 | |
|                     string Original_wuid, 
 | |
|                     System.DateTime Original_wdate, 
 | |
|                     int idx) {
 | |
|             if ((gcode == null)) {
 | |
|                 throw new global::System.ArgumentNullException("gcode");
 | |
|             }
 | |
|             else {
 | |
|                 this.Adapter.UpdateCommand.Parameters[0].Value = ((string)(gcode));
 | |
|             }
 | |
|             if ((cate == null)) {
 | |
|                 this.Adapter.UpdateCommand.Parameters[1].Value = global::System.DBNull.Value;
 | |
|             }
 | |
|             else {
 | |
|                 this.Adapter.UpdateCommand.Parameters[1].Value = ((string)(cate));
 | |
|             }
 | |
|             if ((title == null)) {
 | |
|                 this.Adapter.UpdateCommand.Parameters[2].Value = global::System.DBNull.Value;
 | |
|             }
 | |
|             else {
 | |
|                 this.Adapter.UpdateCommand.Parameters[2].Value = ((string)(title));
 | |
|             }
 | |
|             if ((tolist == null)) {
 | |
|                 this.Adapter.UpdateCommand.Parameters[3].Value = global::System.DBNull.Value;
 | |
|             }
 | |
|             else {
 | |
|                 this.Adapter.UpdateCommand.Parameters[3].Value = ((string)(tolist));
 | |
|             }
 | |
|             if ((bcc == null)) {
 | |
|                 this.Adapter.UpdateCommand.Parameters[4].Value = global::System.DBNull.Value;
 | |
|             }
 | |
|             else {
 | |
|                 this.Adapter.UpdateCommand.Parameters[4].Value = ((string)(bcc));
 | |
|             }
 | |
|             if ((cc == null)) {
 | |
|                 this.Adapter.UpdateCommand.Parameters[5].Value = global::System.DBNull.Value;
 | |
|             }
 | |
|             else {
 | |
|                 this.Adapter.UpdateCommand.Parameters[5].Value = ((string)(cc));
 | |
|             }
 | |
|             if ((subject == null)) {
 | |
|                 this.Adapter.UpdateCommand.Parameters[6].Value = global::System.DBNull.Value;
 | |
|             }
 | |
|             else {
 | |
|                 this.Adapter.UpdateCommand.Parameters[6].Value = ((string)(subject));
 | |
|             }
 | |
|             if ((tail == null)) {
 | |
|                 this.Adapter.UpdateCommand.Parameters[7].Value = global::System.DBNull.Value;
 | |
|             }
 | |
|             else {
 | |
|                 this.Adapter.UpdateCommand.Parameters[7].Value = ((string)(tail));
 | |
|             }
 | |
|             if ((body == null)) {
 | |
|                 this.Adapter.UpdateCommand.Parameters[8].Value = global::System.DBNull.Value;
 | |
|             }
 | |
|             else {
 | |
|                 this.Adapter.UpdateCommand.Parameters[8].Value = ((string)(body));
 | |
|             }
 | |
|             if ((selfTo.HasValue == true)) {
 | |
|                 this.Adapter.UpdateCommand.Parameters[9].Value = ((bool)(selfTo.Value));
 | |
|             }
 | |
|             else {
 | |
|                 this.Adapter.UpdateCommand.Parameters[9].Value = global::System.DBNull.Value;
 | |
|             }
 | |
|             if ((selfCC.HasValue == true)) {
 | |
|                 this.Adapter.UpdateCommand.Parameters[10].Value = ((bool)(selfCC.Value));
 | |
|             }
 | |
|             else {
 | |
|                 this.Adapter.UpdateCommand.Parameters[10].Value = global::System.DBNull.Value;
 | |
|             }
 | |
|             if ((selfBCC.HasValue == true)) {
 | |
|                 this.Adapter.UpdateCommand.Parameters[11].Value = ((bool)(selfBCC.Value));
 | |
|             }
 | |
|             else {
 | |
|                 this.Adapter.UpdateCommand.Parameters[11].Value = global::System.DBNull.Value;
 | |
|             }
 | |
|             if ((wuid == null)) {
 | |
|                 throw new global::System.ArgumentNullException("wuid");
 | |
|             }
 | |
|             else {
 | |
|                 this.Adapter.UpdateCommand.Parameters[12].Value = ((string)(wuid));
 | |
|             }
 | |
|             this.Adapter.UpdateCommand.Parameters[13].Value = ((System.DateTime)(wdate));
 | |
|             this.Adapter.UpdateCommand.Parameters[14].Value = ((int)(Original_idx));
 | |
|             if ((Original_gcode == null)) {
 | |
|                 throw new global::System.ArgumentNullException("Original_gcode");
 | |
|             }
 | |
|             else {
 | |
|                 this.Adapter.UpdateCommand.Parameters[15].Value = ((string)(Original_gcode));
 | |
|             }
 | |
|             if ((Original_cate == null)) {
 | |
|                 this.Adapter.UpdateCommand.Parameters[16].Value = ((object)(1));
 | |
|                 this.Adapter.UpdateCommand.Parameters[17].Value = global::System.DBNull.Value;
 | |
|             }
 | |
|             else {
 | |
|                 this.Adapter.UpdateCommand.Parameters[16].Value = ((object)(0));
 | |
|                 this.Adapter.UpdateCommand.Parameters[17].Value = ((string)(Original_cate));
 | |
|             }
 | |
|             if ((Original_title == null)) {
 | |
|                 this.Adapter.UpdateCommand.Parameters[18].Value = ((object)(1));
 | |
|                 this.Adapter.UpdateCommand.Parameters[19].Value = global::System.DBNull.Value;
 | |
|             }
 | |
|             else {
 | |
|                 this.Adapter.UpdateCommand.Parameters[18].Value = ((object)(0));
 | |
|                 this.Adapter.UpdateCommand.Parameters[19].Value = ((string)(Original_title));
 | |
|             }
 | |
|             if ((Original_selfTo.HasValue == true)) {
 | |
|                 this.Adapter.UpdateCommand.Parameters[20].Value = ((object)(0));
 | |
|                 this.Adapter.UpdateCommand.Parameters[21].Value = ((bool)(Original_selfTo.Value));
 | |
|             }
 | |
|             else {
 | |
|                 this.Adapter.UpdateCommand.Parameters[20].Value = ((object)(1));
 | |
|                 this.Adapter.UpdateCommand.Parameters[21].Value = global::System.DBNull.Value;
 | |
|             }
 | |
|             if ((Original_selfCC.HasValue == true)) {
 | |
|                 this.Adapter.UpdateCommand.Parameters[22].Value = ((object)(0));
 | |
|                 this.Adapter.UpdateCommand.Parameters[23].Value = ((bool)(Original_selfCC.Value));
 | |
|             }
 | |
|             else {
 | |
|                 this.Adapter.UpdateCommand.Parameters[22].Value = ((object)(1));
 | |
|                 this.Adapter.UpdateCommand.Parameters[23].Value = global::System.DBNull.Value;
 | |
|             }
 | |
|             if ((Original_selfBCC.HasValue == true)) {
 | |
|                 this.Adapter.UpdateCommand.Parameters[24].Value = ((object)(0));
 | |
|                 this.Adapter.UpdateCommand.Parameters[25].Value = ((bool)(Original_selfBCC.Value));
 | |
|             }
 | |
|             else {
 | |
|                 this.Adapter.UpdateCommand.Parameters[24].Value = ((object)(1));
 | |
|                 this.Adapter.UpdateCommand.Parameters[25].Value = global::System.DBNull.Value;
 | |
|             }
 | |
|             if ((Original_wuid == null)) {
 | |
|                 throw new global::System.ArgumentNullException("Original_wuid");
 | |
|             }
 | |
|             else {
 | |
|                 this.Adapter.UpdateCommand.Parameters[26].Value = ((string)(Original_wuid));
 | |
|             }
 | |
|             this.Adapter.UpdateCommand.Parameters[27].Value = ((System.DateTime)(Original_wdate));
 | |
|             this.Adapter.UpdateCommand.Parameters[28].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", "16.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, 
 | |
|                     string cate, 
 | |
|                     string title, 
 | |
|                     string tolist, 
 | |
|                     string bcc, 
 | |
|                     string cc, 
 | |
|                     string subject, 
 | |
|                     string tail, 
 | |
|                     string body, 
 | |
|                     global::System.Nullable<bool> selfTo, 
 | |
|                     global::System.Nullable<bool> selfCC, 
 | |
|                     global::System.Nullable<bool> selfBCC, 
 | |
|                     string wuid, 
 | |
|                     System.DateTime wdate, 
 | |
|                     int Original_idx, 
 | |
|                     string Original_gcode, 
 | |
|                     string Original_cate, 
 | |
|                     string Original_title, 
 | |
|                     global::System.Nullable<bool> Original_selfTo, 
 | |
|                     global::System.Nullable<bool> Original_selfCC, 
 | |
|                     global::System.Nullable<bool> Original_selfBCC, 
 | |
|                     string Original_wuid, 
 | |
|                     System.DateTime Original_wdate) {
 | |
|             return this.Update(gcode, cate, title, tolist, bcc, cc, subject, tail, body, selfTo, selfCC, selfBCC, wuid, wdate, Original_idx, Original_gcode, Original_cate, Original_title, Original_selfTo, Original_selfCC, Original_selfBCC, Original_wuid, Original_wdate, Original_idx);
 | |
|         }
 | |
|     }
 | |
|     
 | |
|     /// <summary>
 | |
|     ///TableAdapterManager is used to coordinate TableAdapters in the dataset to enable Hierarchical Update scenarios
 | |
|     ///</summary>
 | |
|     [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 MailAutoTableAdapter _mailAutoTableAdapter;
 | |
|         
 | |
|         private MailDataTableAdapter _mailDataTableAdapter;
 | |
|         
 | |
|         private MailFormTableAdapter _mailFormTableAdapter;
 | |
|         
 | |
|         private bool _backupDataSetBeforeUpdate;
 | |
|         
 | |
|         private global::System.Data.IDbConnection _connection;
 | |
|         
 | |
|         [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
 | |
|         [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.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", "16.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 MailAutoTableAdapter MailAutoTableAdapter {
 | |
|             get {
 | |
|                 return this._mailAutoTableAdapter;
 | |
|             }
 | |
|             set {
 | |
|                 this._mailAutoTableAdapter = value;
 | |
|             }
 | |
|         }
 | |
|         
 | |
|         [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
 | |
|         [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.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 MailDataTableAdapter MailDataTableAdapter {
 | |
|             get {
 | |
|                 return this._mailDataTableAdapter;
 | |
|             }
 | |
|             set {
 | |
|                 this._mailDataTableAdapter = value;
 | |
|             }
 | |
|         }
 | |
|         
 | |
|         [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
 | |
|         [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.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 MailFormTableAdapter MailFormTableAdapter {
 | |
|             get {
 | |
|                 return this._mailFormTableAdapter;
 | |
|             }
 | |
|             set {
 | |
|                 this._mailFormTableAdapter = value;
 | |
|             }
 | |
|         }
 | |
|         
 | |
|         [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
 | |
|         [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.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", "16.0.0.0")]
 | |
|         [global::System.ComponentModel.Browsable(false)]
 | |
|         public global::System.Data.IDbConnection Connection {
 | |
|             get {
 | |
|                 if ((this._connection != null)) {
 | |
|                     return this._connection;
 | |
|                 }
 | |
|                 if (((this._mailAutoTableAdapter != null) 
 | |
|                             && (this._mailAutoTableAdapter.Connection != null))) {
 | |
|                     return this._mailAutoTableAdapter.Connection;
 | |
|                 }
 | |
|                 if (((this._mailDataTableAdapter != null) 
 | |
|                             && (this._mailDataTableAdapter.Connection != null))) {
 | |
|                     return this._mailDataTableAdapter.Connection;
 | |
|                 }
 | |
|                 if (((this._mailFormTableAdapter != null) 
 | |
|                             && (this._mailFormTableAdapter.Connection != null))) {
 | |
|                     return this._mailFormTableAdapter.Connection;
 | |
|                 }
 | |
|                 return null;
 | |
|             }
 | |
|             set {
 | |
|                 this._connection = value;
 | |
|             }
 | |
|         }
 | |
|         
 | |
|         [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
 | |
|         [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
 | |
|         [global::System.ComponentModel.Browsable(false)]
 | |
|         public int TableAdapterInstanceCount {
 | |
|             get {
 | |
|                 int count = 0;
 | |
|                 if ((this._mailAutoTableAdapter != null)) {
 | |
|                     count = (count + 1);
 | |
|                 }
 | |
|                 if ((this._mailDataTableAdapter != null)) {
 | |
|                     count = (count + 1);
 | |
|                 }
 | |
|                 if ((this._mailFormTableAdapter != null)) {
 | |
|                     count = (count + 1);
 | |
|                 }
 | |
|                 return count;
 | |
|             }
 | |
|         }
 | |
|         
 | |
|         /// <summary>
 | |
|         ///Update rows in top-down order.
 | |
|         ///</summary>
 | |
|         [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
 | |
|         [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
 | |
|         private int UpdateUpdatedRows(DataSet1 dataSet, global::System.Collections.Generic.List<global::System.Data.DataRow> allChangedRows, global::System.Collections.Generic.List<global::System.Data.DataRow> allAddedRows) {
 | |
|             int result = 0;
 | |
|             if ((this._mailAutoTableAdapter != null)) {
 | |
|                 global::System.Data.DataRow[] updatedRows = dataSet.MailAuto.Select(null, null, global::System.Data.DataViewRowState.ModifiedCurrent);
 | |
|                 updatedRows = this.GetRealUpdatedRows(updatedRows, allAddedRows);
 | |
|                 if (((updatedRows != null) 
 | |
|                             && (0 < updatedRows.Length))) {
 | |
|                     result = (result + this._mailAutoTableAdapter.Update(updatedRows));
 | |
|                     allChangedRows.AddRange(updatedRows);
 | |
|                 }
 | |
|             }
 | |
|             if ((this._mailDataTableAdapter != null)) {
 | |
|                 global::System.Data.DataRow[] updatedRows = dataSet.MailData.Select(null, null, global::System.Data.DataViewRowState.ModifiedCurrent);
 | |
|                 updatedRows = this.GetRealUpdatedRows(updatedRows, allAddedRows);
 | |
|                 if (((updatedRows != null) 
 | |
|                             && (0 < updatedRows.Length))) {
 | |
|                     result = (result + this._mailDataTableAdapter.Update(updatedRows));
 | |
|                     allChangedRows.AddRange(updatedRows);
 | |
|                 }
 | |
|             }
 | |
|             if ((this._mailFormTableAdapter != null)) {
 | |
|                 global::System.Data.DataRow[] updatedRows = dataSet.MailForm.Select(null, null, global::System.Data.DataViewRowState.ModifiedCurrent);
 | |
|                 updatedRows = this.GetRealUpdatedRows(updatedRows, allAddedRows);
 | |
|                 if (((updatedRows != null) 
 | |
|                             && (0 < updatedRows.Length))) {
 | |
|                     result = (result + this._mailFormTableAdapter.Update(updatedRows));
 | |
|                     allChangedRows.AddRange(updatedRows);
 | |
|                 }
 | |
|             }
 | |
|             return result;
 | |
|         }
 | |
|         
 | |
|         /// <summary>
 | |
|         ///Insert rows in top-down order.
 | |
|         ///</summary>
 | |
|         [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
 | |
|         [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
 | |
|         private int UpdateInsertedRows(DataSet1 dataSet, global::System.Collections.Generic.List<global::System.Data.DataRow> allAddedRows) {
 | |
|             int result = 0;
 | |
|             if ((this._mailAutoTableAdapter != null)) {
 | |
|                 global::System.Data.DataRow[] addedRows = dataSet.MailAuto.Select(null, null, global::System.Data.DataViewRowState.Added);
 | |
|                 if (((addedRows != null) 
 | |
|                             && (0 < addedRows.Length))) {
 | |
|                     result = (result + this._mailAutoTableAdapter.Update(addedRows));
 | |
|                     allAddedRows.AddRange(addedRows);
 | |
|                 }
 | |
|             }
 | |
|             if ((this._mailDataTableAdapter != null)) {
 | |
|                 global::System.Data.DataRow[] addedRows = dataSet.MailData.Select(null, null, global::System.Data.DataViewRowState.Added);
 | |
|                 if (((addedRows != null) 
 | |
|                             && (0 < addedRows.Length))) {
 | |
|                     result = (result + this._mailDataTableAdapter.Update(addedRows));
 | |
|                     allAddedRows.AddRange(addedRows);
 | |
|                 }
 | |
|             }
 | |
|             if ((this._mailFormTableAdapter != null)) {
 | |
|                 global::System.Data.DataRow[] addedRows = dataSet.MailForm.Select(null, null, global::System.Data.DataViewRowState.Added);
 | |
|                 if (((addedRows != null) 
 | |
|                             && (0 < addedRows.Length))) {
 | |
|                     result = (result + this._mailFormTableAdapter.Update(addedRows));
 | |
|                     allAddedRows.AddRange(addedRows);
 | |
|                 }
 | |
|             }
 | |
|             return result;
 | |
|         }
 | |
|         
 | |
|         /// <summary>
 | |
|         ///Delete rows in bottom-up order.
 | |
|         ///</summary>
 | |
|         [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
 | |
|         [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
 | |
|         private int UpdateDeletedRows(DataSet1 dataSet, global::System.Collections.Generic.List<global::System.Data.DataRow> allChangedRows) {
 | |
|             int result = 0;
 | |
|             if ((this._mailFormTableAdapter != null)) {
 | |
|                 global::System.Data.DataRow[] deletedRows = dataSet.MailForm.Select(null, null, global::System.Data.DataViewRowState.Deleted);
 | |
|                 if (((deletedRows != null) 
 | |
|                             && (0 < deletedRows.Length))) {
 | |
|                     result = (result + this._mailFormTableAdapter.Update(deletedRows));
 | |
|                     allChangedRows.AddRange(deletedRows);
 | |
|                 }
 | |
|             }
 | |
|             if ((this._mailDataTableAdapter != null)) {
 | |
|                 global::System.Data.DataRow[] deletedRows = dataSet.MailData.Select(null, null, global::System.Data.DataViewRowState.Deleted);
 | |
|                 if (((deletedRows != null) 
 | |
|                             && (0 < deletedRows.Length))) {
 | |
|                     result = (result + this._mailDataTableAdapter.Update(deletedRows));
 | |
|                     allChangedRows.AddRange(deletedRows);
 | |
|                 }
 | |
|             }
 | |
|             if ((this._mailAutoTableAdapter != null)) {
 | |
|                 global::System.Data.DataRow[] deletedRows = dataSet.MailAuto.Select(null, null, global::System.Data.DataViewRowState.Deleted);
 | |
|                 if (((deletedRows != null) 
 | |
|                             && (0 < deletedRows.Length))) {
 | |
|                     result = (result + this._mailAutoTableAdapter.Update(deletedRows));
 | |
|                     allChangedRows.AddRange(deletedRows);
 | |
|                 }
 | |
|             }
 | |
|             return result;
 | |
|         }
 | |
|         
 | |
|         /// <summary>
 | |
|         ///Remove inserted rows that become updated rows after calling TableAdapter.Update(inserted rows) first
 | |
|         ///</summary>
 | |
|         [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
 | |
|         [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
 | |
|         private global::System.Data.DataRow[] GetRealUpdatedRows(global::System.Data.DataRow[] updatedRows, global::System.Collections.Generic.List<global::System.Data.DataRow> allAddedRows) {
 | |
|             if (((updatedRows == null) 
 | |
|                         || (updatedRows.Length < 1))) {
 | |
|                 return updatedRows;
 | |
|             }
 | |
|             if (((allAddedRows == null) 
 | |
|                         || (allAddedRows.Count < 1))) {
 | |
|                 return updatedRows;
 | |
|             }
 | |
|             global::System.Collections.Generic.List<global::System.Data.DataRow> realUpdatedRows = new global::System.Collections.Generic.List<global::System.Data.DataRow>();
 | |
|             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();
 | |
|         }
 | |
|         
 | |
|         /// <summary>
 | |
|         ///Update all changes to the dataset.
 | |
|         ///</summary>
 | |
|         [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
 | |
|         [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
 | |
|         public virtual int UpdateAll(DataSet1 dataSet) {
 | |
|             if ((dataSet == null)) {
 | |
|                 throw new global::System.ArgumentNullException("dataSet");
 | |
|             }
 | |
|             if ((dataSet.HasChanges() == false)) {
 | |
|                 return 0;
 | |
|             }
 | |
|             if (((this._mailAutoTableAdapter != null) 
 | |
|                         && (this.MatchTableAdapterConnection(this._mailAutoTableAdapter.Connection) == false))) {
 | |
|                 throw new global::System.ArgumentException("TableAdapterManager에서 관리하는 모든 TableAdapter에는 동일한 연결 문자열을 사용해야 합니다.");
 | |
|             }
 | |
|             if (((this._mailDataTableAdapter != null) 
 | |
|                         && (this.MatchTableAdapterConnection(this._mailDataTableAdapter.Connection) == false))) {
 | |
|                 throw new global::System.ArgumentException("TableAdapterManager에서 관리하는 모든 TableAdapter에는 동일한 연결 문자열을 사용해야 합니다.");
 | |
|             }
 | |
|             if (((this._mailFormTableAdapter != null) 
 | |
|                         && (this.MatchTableAdapterConnection(this._mailFormTableAdapter.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<global::System.Data.DataRow> allChangedRows = new global::System.Collections.Generic.List<global::System.Data.DataRow>();
 | |
|             global::System.Collections.Generic.List<global::System.Data.DataRow> allAddedRows = new global::System.Collections.Generic.List<global::System.Data.DataRow>();
 | |
|             global::System.Collections.Generic.List<global::System.Data.Common.DataAdapter> adaptersWithAcceptChangesDuringUpdate = new global::System.Collections.Generic.List<global::System.Data.Common.DataAdapter>();
 | |
|             global::System.Collections.Generic.Dictionary<object, global::System.Data.IDbConnection> revertConnections = new global::System.Collections.Generic.Dictionary<object, global::System.Data.IDbConnection>();
 | |
|             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._mailAutoTableAdapter != null)) {
 | |
|                     revertConnections.Add(this._mailAutoTableAdapter, this._mailAutoTableAdapter.Connection);
 | |
|                     this._mailAutoTableAdapter.Connection = ((global::System.Data.SqlClient.SqlConnection)(workConnection));
 | |
|                     this._mailAutoTableAdapter.Transaction = ((global::System.Data.SqlClient.SqlTransaction)(workTransaction));
 | |
|                     if (this._mailAutoTableAdapter.Adapter.AcceptChangesDuringUpdate) {
 | |
|                         this._mailAutoTableAdapter.Adapter.AcceptChangesDuringUpdate = false;
 | |
|                         adaptersWithAcceptChangesDuringUpdate.Add(this._mailAutoTableAdapter.Adapter);
 | |
|                     }
 | |
|                 }
 | |
|                 if ((this._mailDataTableAdapter != null)) {
 | |
|                     revertConnections.Add(this._mailDataTableAdapter, this._mailDataTableAdapter.Connection);
 | |
|                     this._mailDataTableAdapter.Connection = ((global::System.Data.SqlClient.SqlConnection)(workConnection));
 | |
|                     this._mailDataTableAdapter.Transaction = ((global::System.Data.SqlClient.SqlTransaction)(workTransaction));
 | |
|                     if (this._mailDataTableAdapter.Adapter.AcceptChangesDuringUpdate) {
 | |
|                         this._mailDataTableAdapter.Adapter.AcceptChangesDuringUpdate = false;
 | |
|                         adaptersWithAcceptChangesDuringUpdate.Add(this._mailDataTableAdapter.Adapter);
 | |
|                     }
 | |
|                 }
 | |
|                 if ((this._mailFormTableAdapter != null)) {
 | |
|                     revertConnections.Add(this._mailFormTableAdapter, this._mailFormTableAdapter.Connection);
 | |
|                     this._mailFormTableAdapter.Connection = ((global::System.Data.SqlClient.SqlConnection)(workConnection));
 | |
|                     this._mailFormTableAdapter.Transaction = ((global::System.Data.SqlClient.SqlTransaction)(workTransaction));
 | |
|                     if (this._mailFormTableAdapter.Adapter.AcceptChangesDuringUpdate) {
 | |
|                         this._mailFormTableAdapter.Adapter.AcceptChangesDuringUpdate = false;
 | |
|                         adaptersWithAcceptChangesDuringUpdate.Add(this._mailFormTableAdapter.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._mailAutoTableAdapter != null)) {
 | |
|                     this._mailAutoTableAdapter.Connection = ((global::System.Data.SqlClient.SqlConnection)(revertConnections[this._mailAutoTableAdapter]));
 | |
|                     this._mailAutoTableAdapter.Transaction = null;
 | |
|                 }
 | |
|                 if ((this._mailDataTableAdapter != null)) {
 | |
|                     this._mailDataTableAdapter.Connection = ((global::System.Data.SqlClient.SqlConnection)(revertConnections[this._mailDataTableAdapter]));
 | |
|                     this._mailDataTableAdapter.Transaction = null;
 | |
|                 }
 | |
|                 if ((this._mailFormTableAdapter != null)) {
 | |
|                     this._mailFormTableAdapter.Connection = ((global::System.Data.SqlClient.SqlConnection)(revertConnections[this._mailFormTableAdapter]));
 | |
|                     this._mailFormTableAdapter.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", "16.0.0.0")]
 | |
|         protected virtual void SortSelfReferenceRows(global::System.Data.DataRow[] rows, global::System.Data.DataRelation relation, bool childFirst) {
 | |
|             global::System.Array.Sort<global::System.Data.DataRow>(rows, new SelfReferenceComparer(relation, childFirst));
 | |
|         }
 | |
|         
 | |
|         [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
 | |
|         [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.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;
 | |
|         }
 | |
|         
 | |
|         /// <summary>
 | |
|         ///Update Order Option
 | |
|         ///</summary>
 | |
|         [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
 | |
|         public enum UpdateOrderOption {
 | |
|             
 | |
|             InsertUpdateDelete = 0,
 | |
|             
 | |
|             UpdateInsertDelete = 1,
 | |
|         }
 | |
|         
 | |
|         /// <summary>
 | |
|         ///Used to sort self-referenced table's rows
 | |
|         ///</summary>
 | |
|         [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
 | |
|         private class SelfReferenceComparer : object, global::System.Collections.Generic.IComparer<global::System.Data.DataRow> {
 | |
|             
 | |
|             private global::System.Data.DataRelation _relation;
 | |
|             
 | |
|             private int _childFirst;
 | |
|             
 | |
|             [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
 | |
|             [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.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", "16.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<global::System.Data.DataRow, global::System.Data.DataRow> traversedRows = new global::System.Collections.Generic.Dictionary<global::System.Data.DataRow, global::System.Data.DataRow>();
 | |
|                 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", "16.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 | 
