⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 jobdetailsdataset1.designer.cs

📁 用C#语言在VC环境下实现项目实例开发,实现客户管理系统.
💻 CS
📖 第 1 页 / 共 4 页
字号:
                this.Constraints.Add(new System.Data.UniqueConstraint("Constraint1", new System.Data.DataColumn[] {
                                this.columnCarNo,
                                this.columnWorkerId}, true));
                this.columnCarNo.AllowDBNull = false;
                this.columnCarNo.MaxLength = 15;
                this.columnJobDate.AllowDBNull = false;
                this.columnWorkerId.AllowDBNull = false;
            }
            
            [System.Diagnostics.DebuggerNonUserCodeAttribute()]
            public tblJobDetailsRow NewtblJobDetailsRow() {
                return ((tblJobDetailsRow)(this.NewRow()));
            }
            
            [System.Diagnostics.DebuggerNonUserCodeAttribute()]
            protected override System.Data.DataRow NewRowFromBuilder(System.Data.DataRowBuilder builder) {
                return new tblJobDetailsRow(builder);
            }
            
            [System.Diagnostics.DebuggerNonUserCodeAttribute()]
            protected override System.Type GetRowType() {
                return typeof(tblJobDetailsRow);
            }
            
            [System.Diagnostics.DebuggerNonUserCodeAttribute()]
            protected override void OnRowChanged(System.Data.DataRowChangeEventArgs e) {
                base.OnRowChanged(e);
                if ((this.tblJobDetailsRowChanged != null)) {
                    this.tblJobDetailsRowChanged(this, new tblJobDetailsRowChangeEvent(((tblJobDetailsRow)(e.Row)), e.Action));
                }
            }
            
            [System.Diagnostics.DebuggerNonUserCodeAttribute()]
            protected override void OnRowChanging(System.Data.DataRowChangeEventArgs e) {
                base.OnRowChanging(e);
                if ((this.tblJobDetailsRowChanging != null)) {
                    this.tblJobDetailsRowChanging(this, new tblJobDetailsRowChangeEvent(((tblJobDetailsRow)(e.Row)), e.Action));
                }
            }
            
            [System.Diagnostics.DebuggerNonUserCodeAttribute()]
            protected override void OnRowDeleted(System.Data.DataRowChangeEventArgs e) {
                base.OnRowDeleted(e);
                if ((this.tblJobDetailsRowDeleted != null)) {
                    this.tblJobDetailsRowDeleted(this, new tblJobDetailsRowChangeEvent(((tblJobDetailsRow)(e.Row)), e.Action));
                }
            }
            
            [System.Diagnostics.DebuggerNonUserCodeAttribute()]
            protected override void OnRowDeleting(System.Data.DataRowChangeEventArgs e) {
                base.OnRowDeleting(e);
                if ((this.tblJobDetailsRowDeleting != null)) {
                    this.tblJobDetailsRowDeleting(this, new tblJobDetailsRowChangeEvent(((tblJobDetailsRow)(e.Row)), e.Action));
                }
            }
            
            [System.Diagnostics.DebuggerNonUserCodeAttribute()]
            public void RemovetblJobDetailsRow(tblJobDetailsRow row) {
                this.Rows.Remove(row);
            }
            
            [System.Diagnostics.DebuggerNonUserCodeAttribute()]
            public static System.Xml.Schema.XmlSchemaComplexType GetTypedTableSchema(System.Xml.Schema.XmlSchemaSet xs) {
                System.Xml.Schema.XmlSchemaComplexType type = new System.Xml.Schema.XmlSchemaComplexType();
                System.Xml.Schema.XmlSchemaSequence sequence = new System.Xml.Schema.XmlSchemaSequence();
                JobDetailsDataSet1 ds = new JobDetailsDataSet1();
                xs.Add(ds.GetSchemaSerializable());
                System.Xml.Schema.XmlSchemaAny any1 = new System.Xml.Schema.XmlSchemaAny();
                any1.Namespace = "http://www.w3.org/2001/XMLSchema";
                any1.MinOccurs = new decimal(0);
                any1.MaxOccurs = decimal.MaxValue;
                any1.ProcessContents = System.Xml.Schema.XmlSchemaContentProcessing.Lax;
                sequence.Items.Add(any1);
                System.Xml.Schema.XmlSchemaAny any2 = new System.Xml.Schema.XmlSchemaAny();
                any2.Namespace = "urn:schemas-microsoft-com:xml-diffgram-v1";
                any2.MinOccurs = new decimal(1);
                any2.ProcessContents = System.Xml.Schema.XmlSchemaContentProcessing.Lax;
                sequence.Items.Add(any2);
                System.Xml.Schema.XmlSchemaAttribute attribute1 = new System.Xml.Schema.XmlSchemaAttribute();
                attribute1.Name = "namespace";
                attribute1.FixedValue = ds.Namespace;
                type.Attributes.Add(attribute1);
                System.Xml.Schema.XmlSchemaAttribute attribute2 = new System.Xml.Schema.XmlSchemaAttribute();
                attribute2.Name = "tableTypeName";
                attribute2.FixedValue = "tblJobDetailsDataTable";
                type.Attributes.Add(attribute2);
                type.Particle = sequence;
                return type;
            }
        }
        
        [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "2.0.0.0")]
        public partial class tblJobDetailsRow : System.Data.DataRow {
            
            private tblJobDetailsDataTable tabletblJobDetails;
            
            [System.Diagnostics.DebuggerNonUserCodeAttribute()]
            internal tblJobDetailsRow(System.Data.DataRowBuilder rb) : 
                    base(rb) {
                this.tabletblJobDetails = ((tblJobDetailsDataTable)(this.Table));
            }
            
            [System.Diagnostics.DebuggerNonUserCodeAttribute()]
            public string CarNo {
                get {
                    return ((string)(this[this.tabletblJobDetails.CarNoColumn]));
                }
                set {
                    this[this.tabletblJobDetails.CarNoColumn] = value;
                }
            }
            
            [System.Diagnostics.DebuggerNonUserCodeAttribute()]
            public System.DateTime JobDate {
                get {
                    return ((System.DateTime)(this[this.tabletblJobDetails.JobDateColumn]));
                }
                set {
                    this[this.tabletblJobDetails.JobDateColumn] = value;
                }
            }
            
            [System.Diagnostics.DebuggerNonUserCodeAttribute()]
            public int WorkerId {
                get {
                    return ((int)(this[this.tabletblJobDetails.WorkerIdColumn]));
                }
                set {
                    this[this.tabletblJobDetails.WorkerIdColumn] = value;
                }
            }
            
            [System.Diagnostics.DebuggerNonUserCodeAttribute()]
            public int KMs {
                get {
                    try {
                        return ((int)(this[this.tabletblJobDetails.KMsColumn]));
                    }
                    catch (System.InvalidCastException e) {
                        throw new System.Data.StrongTypingException("表“tblJobDetails”中列“KMs”的值为 DBNull。", e);
                    }
                }
                set {
                    this[this.tabletblJobDetails.KMsColumn] = value;
                }
            }
            
            [System.Diagnostics.DebuggerNonUserCodeAttribute()]
            public int Tuning {
                get {
                    try {
                        return ((int)(this[this.tabletblJobDetails.TuningColumn]));
                    }
                    catch (System.InvalidCastException e) {
                        throw new System.Data.StrongTypingException("表“tblJobDetails”中列“Tuning”的值为 DBNull。", e);
                    }
                }
                set {
                    this[this.tabletblJobDetails.TuningColumn] = value;
                }
            }
            
            [System.Diagnostics.DebuggerNonUserCodeAttribute()]
            public int Alingnment {
                get {
                    try {
                        return ((int)(this[this.tabletblJobDetails.AlingnmentColumn]));
                    }
                    catch (System.InvalidCastException e) {
                        throw new System.Data.StrongTypingException("表“tblJobDetails”中列“Alingnment”的值为 DBNull。", e);
                    }
                }
                set {
                    this[this.tabletblJobDetails.AlingnmentColumn] = value;
                }
            }
            
            [System.Diagnostics.DebuggerNonUserCodeAttribute()]
            public int Balancing {
                get {
                    try {
                        return ((int)(this[this.tabletblJobDetails.BalancingColumn]));
                    }
                    catch (System.InvalidCastException e) {
                        throw new System.Data.StrongTypingException("表“tblJobDetails”中列“Balancing”的值为 DBNull。", e);
                    }
                }
                set {
                    this[this.tabletblJobDetails.BalancingColumn] = value;
                }
            }
            
            [System.Diagnostics.DebuggerNonUserCodeAttribute()]
            public int Tires {
                get {
                    try {
                        return ((int)(this[this.tabletblJobDetails.TiresColumn]));
                    }
                    catch (System.InvalidCastException e) {
                        throw new System.Data.StrongTypingException("表“tblJobDetails”中列“Tires”的值为 DBNull。", e);
                    }
                }
                set {
                    this[this.tabletblJobDetails.TiresColumn] = value;
                }
            }
            
            [System.Diagnostics.DebuggerNonUserCodeAttribute()]
            public int Weights {
                get {
                    try {
                        return ((int)(this[this.tabletblJobDetails.WeightsColumn]));
                    }
                    catch (System.InvalidCastException e) {
                        throw new System.Data.StrongTypingException("表“tblJobDetails”中列“Weights”的值为 DBNull。", e);
                    }
                }
                set {
                    this[this.tabletblJobDetails.WeightsColumn] = value;
                }
            }
            
            [System.Diagnostics.DebuggerNonUserCodeAttribute()]
            public int OilChanged {
                get {
                    try {
                        return ((int)(this[this.tabletblJobDetails.OilChangedColumn]));
                    }
                    catch (System.InvalidCastException e) {
                        throw new System.Data.StrongTypingException("表“tblJobDetails”中列“OilChanged”的值为 DBNull。", e);
                    }
                }
                set {
                    this[this.tabletblJobDetails.OilChangedColumn] = value;
                }
            }
            
            [System.Diagnostics.DebuggerNonUserCodeAttribute()]
            public int OilQty {
                get {
                    try {
                        return ((int)(this[this.tabletblJobDetails.OilQtyColumn]));
                    }
                    catch (System.InvalidCastException e) {
                        throw new System.Data.StrongTypingException("表“tblJobDetails”中列“OilQty”的值为 DBNull。", e);
                    }
                }
                set {
                    this[this.tabletblJobDetails.OilQtyColumn] = value;
                }
            }
            
            [System.Diagnostics.DebuggerNonUserCodeAttribute()]
            public int OilFilter {
                get {
                    try {
                        return ((int)(this[this.tabletblJobDetails.OilFilterColumn]));
                    }
                    catch (System.InvalidCastException e) {
                        throw new System.Data.StrongTypingException("表“tblJobDetails”中列“OilFilter”的值为 DBNull。", e);
                    }
                }
                set {
                    this[this.tabletblJobDetails.OilFilterColumn] = value;
                }
            }
            
            [System.Diagnostics.DebuggerNonUserCodeAttribute()]
            public int GearOil {
                get {
                    try {
                        return ((int)(this[this.tabletblJobDetails.GearOilColumn]));
                    }
                    catch (System.InvalidCastException e) {
                        throw new System.Data.StrongTypingException("表“tblJobDetails”中列“GearOil”的值为 DBNull。", e);
                    }
                }
                set {
                    this[this.tabletblJobDetails.GearOilColumn] = value;
                }
            }
            
            [System.Diagnostics.DebuggerNonUserCodeAttribute()]
            public int GearOilQty {
                get {
                    try {
                        return ((int)(this[this.tabletblJobDetails.GearOilQtyColumn]));
                    }
                    catch (System.InvalidCastException e) {
                        throw new System.Data.StrongTypingException("表“tblJobDetails”中列“GearOilQty”的值为 DBNull。", e);
                    }
                }
                set {
                    this[this.tabletblJobDetails.GearOilQtyColumn] = value;
                }
            }
            
            [System.Diagnostics.DebuggerNonUserCodeAttribute()]
            public int Point {
                get {
                    try {
                        return ((int)(this[this.tabletblJobDetails.PointColumn]));
                    }
                    catch (System.InvalidCastException e) {
                        throw new System.Data.StrongTypingException("表“tblJobDetails”中列“Point”的值为 DBNull。", e);
                    }
                }
                set {

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -