diff --git a/Hospital/HospitalBusinessLogic/HospitalBusinessLogic.csproj b/Hospital/HospitalBusinessLogic/HospitalBusinessLogic.csproj new file mode 100644 index 0000000..b57c89e --- /dev/null +++ b/Hospital/HospitalBusinessLogic/HospitalBusinessLogic.csproj @@ -0,0 +1,11 @@ + + + + WinExe + net6.0-windows + enable + true + enable + + + \ No newline at end of file diff --git a/Hospital/HospitalBusinessLogic/Program.cs b/Hospital/HospitalBusinessLogic/Program.cs new file mode 100644 index 0000000..85cc24d --- /dev/null +++ b/Hospital/HospitalBusinessLogic/Program.cs @@ -0,0 +1,17 @@ +namespace HospitalBusinessLogic +{ + internal static class Program + { + /// + /// The main entry point for the application. + /// + [STAThread] + static void Main() + { + // To customize application configuration such as set high DPI settings or default font, + // see https://aka.ms/applicationconfiguration. + ApplicationConfiguration.Initialize(); + Application.Run(new Form1()); + } + } +} \ No newline at end of file