📄 productinfo.cs
字号:
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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -