From f6fc61df88c6799e706b22c422d0b21ee417907f Mon Sep 17 00:00:00 2001
From: ​
Date: Thu, 1 Jan 1970 00:00:00 +0000
Subject: software sales

---
 software_sales/Software Sales/Program.cs | 22 ++++++++++++++++++++++
 1 file changed, 22 insertions(+)
 create mode 100644 software_sales/Software Sales/Program.cs

(limited to 'software_sales/Software Sales/Program.cs')

diff --git a/software_sales/Software Sales/Program.cs b/software_sales/Software Sales/Program.cs
new file mode 100644
index 0000000..492837b
--- /dev/null
+++ b/software_sales/Software Sales/Program.cs	
@@ -0,0 +1,22 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Threading.Tasks;
+using System.Windows.Forms;
+
+namespace Software_Sales
+{
+    internal static class Program
+    {
+        /// <summary>
+        /// The main entry point for the application.
+        /// </summary>
+        [STAThread]
+        static void Main()
+        {
+            Application.EnableVisualStyles();
+            Application.SetCompatibleTextRenderingDefault(false);
+            Application.Run(new softwareSales());
+        }
+    }
+}
-- 
cgit 1.4.1