CNSA-212-FP/Louis'-Pharmacy_CNSA212-FP/Program.cs

23 lines
544 B
C#
Raw Normal View History

2024-01-31 09:05:11 -08:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace Louis__Pharmacy_CNSA212_FP
{
static class Program
{
/// <summary>
/// The main entry point for the application.
/// </summary>
[STAThread]
static void Main()
{
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
2024-02-01 06:20:14 -08:00
Application.Run(new frmAddPatientPhysician());
2024-01-31 09:05:11 -08:00
}
}
}