📄 customersentity.cs
字号:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace VinciDataAccess.Entity
{
public class CustomersEntity
{
#region The Customers Table's Column
#region the propertiy of CustomerID
/// <summary>
///the propertiy of CustomerID
/// </summary>
private int _customerID;
#endregion
#region the propertiy of CompanyName
/// <summary>
/// the propertiy of CompanyName
/// </summary>
private string _companyName;
#endregion
#region the propertiy of ContactName
/// <summary>
/// the propertiy of ContactName
/// </summary>
private string _contactName;
#endregion
#region the propertiy of ContactTitle
/// <summary>
/// the propertiy of ContactTitle
/// </summary>
private string _contactTitle;
#endregion
#region the propertiy of Address
/// <summary>
/// the propertiy of Address
/// </summary>
private string _address;
#endregion
#region the propertiy of City
/// <summary>
/// the propertiy of City
/// </summary>
private string _city;
#endregion
#region the propertiy of RegionID
/// <summary>
/// the propertiy of RegionID
/// </summary>
private int _regionID;
#endregion
#region the propertiy of PostalCode
/// <summary>
/// the propertiy of PostalCode
/// </summary>
private string _postalCode;
#endregion
#region the propertiy of Country
/// <summary>
/// the propertiy of Country
/// </summary>
private string _country;
#endregion
#region the propertiy of Phone
/// <summary>
/// the propertiy of Phone
/// </summary>
private string _phone;
#endregion
#region the propertiy of Fax
/// <summary>
/// the propertiy of Fax
/// </summary>
private string _fax;
#endregion
public int CustomerID
{
get
{
return _customerID;
}
set
{
_customerID = value;
}
}
public string CompanyName
{
get
{
return _companyName;
}
set
{
_companyName = value;
}
}
public string ContactName
{
get
{
return _contactName;
}
set
{
_contactName = value;
}
}
public string ContactTitle
{
get
{
return _contactTitle;
}
set
{
_contactTitle = value;
}
}
public string Address
{
get
{
return _address;
}
set
{
_address = value;
}
}
public string City
{
get
{
return _city;
}
set
{
_city = value;
}
}
public int RegionID
{
get
{
return _regionID;
}
set
{
_regionID = value;
}
}
public string PostalCode
{
get
{
return _postalCode;
}
set
{
_postalCode = value;
}
}
public string Country
{
get
{
return _country;
}
set
{
_country = value;
}
}
public string Phone
{
get
{
return _phone;
}
set
{
_phone = value;
}
}
public string Fax
{
get
{
return _fax;
}
set
{
_fax = value;
}
}
#endregion
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -