?? suppliersentity.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 + -