productinfo.cs

来自「ASP.net网站开发四“酷”全书:新闻、论坛、电子商城、博客_源码」· CS 代码 · 共 46 行

CS
46
字号
using System;

namespace BookShop.Model {

	/// <summary>
	/// Business entity used to model a product
	/// </summary>
	[Serializable]
	public class ProductInfo {

		// Internal member variables
		private string _id;
		private string _name;
		private string _description;

		/// <summary>
		/// Default constructor
		/// </summary>
		public ProductInfo() {}

		/// <summary>
		/// Constructor with specified initial values
		/// </summary>
		/// <param name="id">Product Id</param>
		/// <param name="name">Product Name</param>
		/// <param name="description">Product Description</param>
		public ProductInfo(string id, string name, string description) {
			this._id = id;
			this._name = name;
			this._description = description;
		}

		// Properties
		public string Id {
			get { return _id; }
		}

		public string Name {
			get { return _name; }
		}

		public string Description {
			get { return _description; }
		}
	}
}

⌨️ 快捷键说明

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