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

📄 suppliersentity.cs

📁 简单的cI真的是很简单 你想要就下载吧
💻 CS
字号:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace VinciDataAccess.Entity
{
    /// <summary>
    /// Name:Wicresoft's Vinci Item
    /// Author:Owen Liu
    /// Time:2008.2.20
    public class SuppliersEntity
    {
        private int _supplierID;
        private string _companyName;
        private string _contactName;
        private string _contactTitle;
        private string _address;
        private Nullable<int> _regionID;
        private string _phone;
        private string _homePage;
        /// <summary>
        /// propertiy of _supplierID
        /// </summary>
        public int SupplierID
        {
            get { return _supplierID; }
            set { _supplierID = value; }
        }        
        /// <summary>
        /// propertiy of _companyName
        /// </summary>
        public string CompanyName
        {
            get { return _companyName; }
            set { _companyName = value; }
        }        
        /// <summary>
        /// propertiy of _contactName
        /// </summary>
        public string ContactName
        {
            get { return _contactName; }
            set { _contactName = value; }
        }        
        /// <summary>
        /// propertiy of _contactTitle
        /// </summary>
        public string ContactTitle
        {
            get { return _contactTitle; }
            set { _contactTitle = value; }
        }        
        /// <summary>
        /// propertiy of _address
        /// </summary>
        public string Address
        {
            get { return _address; }
            set { _address = value; }
        }        
        /// <summary>
        ///propertiy of _regionID 
        /// </summary>
        public Nullable<int> RegionID
        {
            get { return _regionID; }
            set { _regionID = value; }
        }
        /// <summary>
        /// propertiy of phone
        /// </summary>
        public string Phone
        {
            get { return _phone; }
            set { _phone = value; }
        }
        /// <summary>
        /// propertiy of _homePage
        /// </summary>
        public string HomePage
        {
            get { return _homePage; }
            set { _homePage = value; }
        }

    }
}

⌨️ 快捷键说明

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