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

📄 reference.cs

📁 本作目的是介绍一个工具
💻 CS
📖 第 1 页 / 共 5 页
字号:
//------------------------------------------------------------------------------
// <auto-generated>
//     This code was generated by a tool.
//     Runtime Version:2.0.50727.3053
//
//     Changes to this file may cause incorrect behavior and will be lost if
//     the code is regenerated.
// </auto-generated>
//------------------------------------------------------------------------------

// 
// This code was auto-generated by Microsoft.Silverlight.ServiceReference, version 2.0.5.0
// 
namespace ZSampleSilverlight.ZSampleService {
    using System.Runtime.Serialization;
    
    
    [System.Diagnostics.DebuggerStepThroughAttribute()]
    [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Runtime.Serialization", "3.0.0.0")]
    [System.Runtime.Serialization.DataContractAttribute(Name="COrdLineDetailData", Namespace="http://schemas.datacontract.org/2004/07/ZSampleServiceLibrary")]
    public partial class COrdLineDetailData : object, System.ComponentModel.INotifyPropertyChanged {
        
        private float curUnitPriceField;
        
        private int fkeyOrderIDField;
        
        private int fkeyProductIDField;
        
        private int fkeyShipViaField;
        
        private int intQuantityField;
        
        private string pkeyOrdLineDetailIDField;
        
        private float sngDiscountField;
        
        [System.Runtime.Serialization.DataMemberAttribute()]
        public float curUnitPrice {
            get {
                return this.curUnitPriceField;
            }
            set {
                if ((this.curUnitPriceField.Equals(value) != true)) {
                    this.curUnitPriceField = value;
                    this.RaisePropertyChanged("curUnitPrice");
                }
            }
        }
        
        [System.Runtime.Serialization.DataMemberAttribute()]
        public int fkeyOrderID {
            get {
                return this.fkeyOrderIDField;
            }
            set {
                if ((this.fkeyOrderIDField.Equals(value) != true)) {
                    this.fkeyOrderIDField = value;
                    this.RaisePropertyChanged("fkeyOrderID");
                }
            }
        }
        
        [System.Runtime.Serialization.DataMemberAttribute()]
        public int fkeyProductID {
            get {
                return this.fkeyProductIDField;
            }
            set {
                if ((this.fkeyProductIDField.Equals(value) != true)) {
                    this.fkeyProductIDField = value;
                    this.RaisePropertyChanged("fkeyProductID");
                }
            }
        }
        
        [System.Runtime.Serialization.DataMemberAttribute()]
        public int fkeyShipVia {
            get {
                return this.fkeyShipViaField;
            }
            set {
                if ((this.fkeyShipViaField.Equals(value) != true)) {
                    this.fkeyShipViaField = value;
                    this.RaisePropertyChanged("fkeyShipVia");
                }
            }
        }
        
        [System.Runtime.Serialization.DataMemberAttribute()]
        public int intQuantity {
            get {
                return this.intQuantityField;
            }
            set {
                if ((this.intQuantityField.Equals(value) != true)) {
                    this.intQuantityField = value;
                    this.RaisePropertyChanged("intQuantity");
                }
            }
        }
        
        [System.Runtime.Serialization.DataMemberAttribute()]
        public string pkeyOrdLineDetailID {
            get {
                return this.pkeyOrdLineDetailIDField;
            }
            set {
                if ((object.ReferenceEquals(this.pkeyOrdLineDetailIDField, value) != true)) {
                    this.pkeyOrdLineDetailIDField = value;
                    this.RaisePropertyChanged("pkeyOrdLineDetailID");
                }
            }
        }
        
        [System.Runtime.Serialization.DataMemberAttribute()]
        public float sngDiscount {
            get {
                return this.sngDiscountField;
            }
            set {
                if ((this.sngDiscountField.Equals(value) != true)) {
                    this.sngDiscountField = value;
                    this.RaisePropertyChanged("sngDiscount");
                }
            }
        }
        
        public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged;
        
        protected void RaisePropertyChanged(string propertyName) {
            System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged;
            if ((propertyChanged != null)) {
                propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName));
            }
        }
    }
    
    [System.Diagnostics.DebuggerStepThroughAttribute()]
    [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Runtime.Serialization", "3.0.0.0")]
    [System.Runtime.Serialization.DataContractAttribute(Name="CProductsData", Namespace="http://schemas.datacontract.org/2004/07/ZSampleServiceLibrary")]
    public partial class CProductsData : object, System.ComponentModel.INotifyPropertyChanged {
        
        private float curUnitPriceField;
        
        private int fkeyCategoryIDField;
        
        private int fkeySupplierIDField;
        
        private int intReorderLevelField;
        
        private int intUnitsInStockField;
        
        private int intUnitsOnOrderField;
        
        private string pkeyProductIDField;
        
        private string strProductNameField;
        
        private string strQuantityPerUnitField;
        
        private bool ysnDiscontinuedField;
        
        [System.Runtime.Serialization.DataMemberAttribute()]
        public float curUnitPrice {
            get {
                return this.curUnitPriceField;
            }
            set {
                if ((this.curUnitPriceField.Equals(value) != true)) {
                    this.curUnitPriceField = value;
                    this.RaisePropertyChanged("curUnitPrice");
                }
            }
        }
        
        [System.Runtime.Serialization.DataMemberAttribute()]
        public int fkeyCategoryID {
            get {
                return this.fkeyCategoryIDField;
            }
            set {
                if ((this.fkeyCategoryIDField.Equals(value) != true)) {
                    this.fkeyCategoryIDField = value;
                    this.RaisePropertyChanged("fkeyCategoryID");
                }
            }
        }
        
        [System.Runtime.Serialization.DataMemberAttribute()]
        public int fkeySupplierID {
            get {
                return this.fkeySupplierIDField;
            }
            set {
                if ((this.fkeySupplierIDField.Equals(value) != true)) {
                    this.fkeySupplierIDField = value;
                    this.RaisePropertyChanged("fkeySupplierID");
                }
            }
        }
        
        [System.Runtime.Serialization.DataMemberAttribute()]
        public int intReorderLevel {
            get {
                return this.intReorderLevelField;
            }
            set {
                if ((this.intReorderLevelField.Equals(value) != true)) {
                    this.intReorderLevelField = value;
                    this.RaisePropertyChanged("intReorderLevel");
                }
            }
        }
        
        [System.Runtime.Serialization.DataMemberAttribute()]
        public int intUnitsInStock {
            get {
                return this.intUnitsInStockField;
            }
            set {
                if ((this.intUnitsInStockField.Equals(value) != true)) {
                    this.intUnitsInStockField = value;
                    this.RaisePropertyChanged("intUnitsInStock");
                }
            }
        }
        
        [System.Runtime.Serialization.DataMemberAttribute()]
        public int intUnitsOnOrder {
            get {
                return this.intUnitsOnOrderField;
            }
            set {
                if ((this.intUnitsOnOrderField.Equals(value) != true)) {
                    this.intUnitsOnOrderField = value;
                    this.RaisePropertyChanged("intUnitsOnOrder");
                }
            }
        }
        
        [System.Runtime.Serialization.DataMemberAttribute()]
        public string pkeyProductID {
            get {
                return this.pkeyProductIDField;
            }
            set {
                if ((object.ReferenceEquals(this.pkeyProductIDField, value) != true)) {
                    this.pkeyProductIDField = value;
                    this.RaisePropertyChanged("pkeyProductID");
                }
            }
        }
        
        [System.Runtime.Serialization.DataMemberAttribute()]
        public string strProductName {
            get {
                return this.strProductNameField;
            }
            set {
                if ((object.ReferenceEquals(this.strProductNameField, value) != true)) {
                    this.strProductNameField = value;
                    this.RaisePropertyChanged("strProductName");
                }
            }
        }
        
        [System.Runtime.Serialization.DataMemberAttribute()]
        public string strQuantityPerUnit {
            get {
                return this.strQuantityPerUnitField;
            }
            set {
                if ((object.ReferenceEquals(this.strQuantityPerUnitField, value) != true)) {
                    this.strQuantityPerUnitField = value;
                    this.RaisePropertyChanged("strQuantityPerUnit");
                }
            }
        }
        
        [System.Runtime.Serialization.DataMemberAttribute()]
        public bool ysnDiscontinued {
            get {
                return this.ysnDiscontinuedField;
            }
            set {
                if ((this.ysnDiscontinuedField.Equals(value) != true)) {
                    this.ysnDiscontinuedField = value;
                    this.RaisePropertyChanged("ysnDiscontinued");
                }
            }
        }
        
        public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged;
        
        protected void RaisePropertyChanged(string propertyName) {
            System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged;
            if ((propertyChanged != null)) {
                propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName));
            }
        }
    }
    
    [System.Diagnostics.DebuggerStepThroughAttribute()]
    [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Runtime.Serialization", "3.0.0.0")]
    [System.Runtime.Serialization.DataContractAttribute(Name="CShippersData", Namespace="http://schemas.datacontract.org/2004/07/ZSampleServiceLibrary")]
    public partial class CShippersData : object, System.ComponentModel.INotifyPropertyChanged {
        
        private int fkeyCategoryIDField;
        
        private string pkeyShipperIDField;
        
        private string strCompanyNameField;
        
        private string strPhoneField;
        
        [System.Runtime.Serialization.DataMemberAttribute()]
        public int fkeyCategoryID {
            get {
                return this.fkeyCategoryIDField;
            }
            set {
                if ((this.fkeyCategoryIDField.Equals(value) != true)) {
                    this.fkeyCategoryIDField = value;
                    this.RaisePropertyChanged("fkeyCategoryID");
                }
            }
        }
        
        [System.Runtime.Serialization.DataMemberAttribute()]
        public string pkeyShipperID {
            get {
                return this.pkeyShipperIDField;
            }
            set {
                if ((object.ReferenceEquals(this.pkeyShipperIDField, value) != true)) {
                    this.pkeyShipperIDField = value;
                    this.RaisePropertyChanged("pkeyShipperID");
                }
            }
        }
        
        [System.Runtime.Serialization.DataMemberAttribute()]
        public string strCompanyName {
            get {
                return this.strCompanyNameField;
            }
            set {
                if ((object.ReferenceEquals(this.strCompanyNameField, value) != true)) {
                    this.strCompanyNameField = value;
                    this.RaisePropertyChanged("strCompanyName");
                }
            }
        }
        
        [System.Runtime.Serialization.DataMemberAttribute()]
        public string strPhone {
            get {
                return this.strPhoneField;
            }
            set {

⌨️ 快捷键说明

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