OrderLine.cs
上传用户:lxycoco
上传日期:2022-07-21
资源大小:38457k
文件大小:1k
源码类别:

C#编程

开发平台:

Others

  1. using System;
  2. namespace Wrox.ProCSharp.EnterpriseServices
  3. {
  4. [Serializable]
  5. public class OrderLine
  6. {
  7. public static OrderLine Create(int productId, float unitPrice, int quantity)
  8. {
  9. OrderLine detail = new OrderLine();
  10. detail.productId = productId;
  11. detail.unitPrice = unitPrice;
  12. detail.quantity = quantity;
  13. return detail;
  14. }
  15. public OrderLine()
  16. {
  17. }
  18. private int productId;
  19. private float unitPrice;
  20. private int quantity;
  21. public int ProductId
  22. {
  23. get
  24. {
  25. return productId;
  26. }
  27. set
  28. {
  29. productId = value;
  30. }
  31. }
  32. public float UnitPrice
  33. {
  34. get
  35. {
  36. return unitPrice;
  37. }
  38. set
  39. {
  40. unitPrice = value;
  41. }
  42. }
  43. public int Quantity
  44. {
  45. get
  46. {
  47. return quantity;
  48. }
  49. set
  50. {
  51. quantity = value;
  52. }
  53. }
  54. }
  55. }