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

C#编程

开发平台:

Others

  1. using System;
  2. using Wrox.ProCSharp.EnterpriseServices;
  3. namespace NorthwindClient
  4. {
  5. /// <summary>
  6. /// Summary description for Class1.
  7. /// </summary>
  8. class Class1
  9. {
  10. /// <summary>
  11. /// The main entry point for the application.
  12. /// </summary>
  13. [STAThread]
  14. static void Main(string[] args)
  15. {
  16. Order order = Order.Create("PICCO", DateTime.Today, "Georg Pipps", 
  17. "Salzburg", "Austria");
  18. order.AddOrderLine(OrderLine.Create(16, 17.45F, 2));
  19. order.AddOrderLine(OrderLine.Create(67, 14, 1));
  20. OrderControl orderControl = new OrderControl();
  21. orderControl.NewOrder(order);
  22. }
  23. }
  24. }