Program.cs 663 B

123456789101112131415161718192021222324252627282930
  1. using CP.Business;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Linq;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7. namespace ConsoleTest
  8. {
  9. class Program
  10. {
  11. static void Main(string[] args)
  12. {
  13. Console.WriteLine("开始...");
  14. //ZtColumnBll.TestAdd();
  15. try
  16. {
  17. //new ZtArticleTest().TestAdd();
  18. new ZtArticleDetailTest().TestAdd();
  19. }
  20. catch (Exception ex)
  21. {
  22. Console.WriteLine(ex.Message);
  23. }
  24. Console.WriteLine("结束");
  25. Console.ReadLine();
  26. }
  27. }
  28. }