⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 bookorder.cs

📁 客户关系管理系统
💻 CS
字号:
using System;

namespace HKeBookshop
{
	/// <summary>
	/// BookOrder 的摘要说明。
	/// </summary>
	public class BookOrder
	{
		
			string bookid;
			string bookname;
			decimal price;
			int quantity;

			public string BookId
			{
				get
				{
					return bookid;
				}
				set
				{
					bookid=value;
				}
			}

			public string BookName
			{
				get
				{
					return bookname;
				}
				set
				{
					bookname=value;
				}
			}

			public int Quantity
			{
				get
				{
					return quantity;
				}
				set
				{
					quantity=value;
				}
			}
					
		    public decimal Price
			{
				get
				{
					return price;
				}
				set
				{
					price=value;
				}
			}
			public BookOrder(string BookId,string BookName,decimal Price, int Quantity)
			{
				bookid = BookId;
				bookname = BookName;
				price = Price;
				quantity = Quantity;
			}
		
	}
		
}

⌨️ 快捷键说明

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