client.cs

来自「实现房产销售的房屋管理 客户管理 并且在客户管理中实现了对预定客户和已购房客户的」· CS 代码 · 共 140 行

CS
140
字号
using System;

namespace HouseBE
{
	/// <summary>
	/// Client 实体 客户信息。
	/// </summary>
	public class Client
	{
		private int _ClientID;
		private string _ClientName;
		private string _ClientAdress;
		private string _ClientSales;
		private string _ClientTelphone;
		private string _ClientEmail;
		private string _Reamark;
		private string EmpName;
		private int floor;
		private string format;
		private string xiang;
		private int  area;
		private string state;
		private string time;

		public string getEmp
		{
			get{return this.EmpName;}
			set{this.EmpName=value;}
		}

		public int getFloor
		{
			get{return this.floor;}
			set{this.floor=value;}
		}
		public string getFormat
		{
			get{return this.format;}
			set{this.format=value;}
		}
		public string getXiang
		{
			get{return this.xiang;}
			set{this.xiang=value;}
		}
		public int getArea
		{
			get{return this.area;}
			set{this.area=value;}
		}
		public string Getstate
		{
			get{return this.state;}
			set{this.state=value;}
		}
		public string getTime
		{
			get{return this.time;}
			set{this.time=value;}
		}
		public int ClientID
		{
			set
			{
			  this._ClientID=value;
			}
			get
			{
			  return this._ClientID;
			}
		}
		public string ClientName
		{
			set
			{
			 this._ClientName=value;
			}
			get
			{
			 return this._ClientName;
			}
		}
		public string ClientAdress
		{
			set
			{
			 this._ClientAdress=value;
			}
			get
			{
			 return this._ClientAdress;
			}
		}
		public string ClientSales
		{
			set
			{
			 this._ClientSales=value;
			}
			get
			{
			  return this._ClientSales;
			}
		}
		public string ClientTelphone
		{
			set
			{
			 this._ClientTelphone=value;
			}
			get
			{
			  return this._ClientTelphone;
			}
		}
		public string ClientEmail
		{
			set
			{
			  this._ClientEmail=value;
			}
			get
			{
			  return this._ClientEmail;
			}
		}
		public string Reamark
		{
			set
			{
			 this._Reamark=value;
			}
			get
			{
			  return this._Reamark;
			}
		}
	}
}

⌨️ 快捷键说明

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