uchet_techniki/Program.cs

21 lines
493 B
C#
Raw Normal View History

using System;
using System.Windows.Forms;
namespace Учетещей
{
static class Program
{
[STAThread]
static void Main()
{
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
// Инициализируем базу данных при запуске приложения
DbManager.InitializeDatabase();
Application.Run(new Form1());
}
}
}