Program.cs 1.1 KB

123456789101112131415161718192021222324252627282930
  1. using ERP.Core;
  2. using ERP.Framework.Constants;
  3. namespace ERP
  4. {
  5. public class Program
  6. {
  7. public static void Main(string[] args)
  8. {
  9. Console.Title = "ERP.Application";
  10. Console.WriteLine($@"
  11. _____ ____ ____ ____ ____ ____ _ _ ____ ____ _____ _ ____ _
  12. / __// __\/ __\ / _ \/ __\/ __\/ \ / \/ _\/ _ \/__ __\/ \/ _ \/ \ /|
  13. | \ | \/|| \/| | / \|| \/|| \/|| | | || / | / \| / \ | || / \|| |\ ||
  14. | /_ | /| __/__| |-||| __/| __/| |_/\| || \_ | |-|| | | | || \_/|| | \||
  15. \____\\_/\_\\_/ \/\_/ \|\_/ \_/ \____/\_/\____/\_/ \| \_/ \_/\____/\_/ \|
  16. ----------------------------------------------------------------------------------------------
  17. Start Time: {DateTime.Now.ToString(DateTimeConstant.DATE_LONG)}");
  18. var app = WebApplication
  19. .CreateBuilder(args)
  20. .InitApplication()
  21. .Build();
  22. app.InitConfigure();
  23. app.Run();
  24. }
  25. }
  26. }