123456789101112131415161718192021 |
- using SnapshotWinFormsApp.Repository;
- using SnapshotWinFormsApp.Tools;
- namespace SnapshotWinFormsApp;
- internal static class Program
- {
- /// <summary>
- /// The main entry point for the application.
- /// </summary>
- [STAThread]
- static void Main()
- {
- // To customize application configuration such as set high DPI settings or default font,
- // see https://aka.ms/applicationconfiguration.
- ApplicationConfiguration.Initialize();
- // ×¢²á Mapster Ó³É乿Ôò
- MapsterConfig.RegisterMappings();
- System.Windows.Forms.Application.Run(new MainForm(DbSqlServer.Instance));
- }
- }
|