Skip to content

Commit 3893412

Browse files
authored
Add files via upload
1 parent 529ccb9 commit 3893412

File tree

1 file changed

+25
-0
lines changed

1 file changed

+25
-0
lines changed

C-Sharf Classes/Program.cs

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
using System;
2+
using System.Collections.Generic;
3+
using System.Linq;
4+
using System.Threading.Tasks;
5+
using System.Windows.Forms;
6+
using C_Sharf_Classes.Classes;
7+
using C_Sharf_Classes.View;
8+
9+
namespace C_Sharf_Classes
10+
{
11+
static class Program
12+
{
13+
/// <summary>
14+
/// The main entry point for the application.
15+
/// </summary>
16+
[STAThread]
17+
static void Main()
18+
{
19+
Database db = new Database();
20+
Application.EnableVisualStyles();
21+
Application.SetCompatibleTextRenderingDefault(false);
22+
Application.Run(new frmLogin());
23+
}
24+
}
25+
}

0 commit comments

Comments
 (0)