mirror of
https://github.com/mrfluffy-dev/lpr.git
synced 2026-01-17 02:10:33 +00:00
21 lines
350 B
C#
21 lines
350 B
C#
using DataAccess;
|
|
using Models;
|
|
using Presentation;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace LPR381_Project
|
|
{
|
|
class Program
|
|
{
|
|
static void Main(string[] args)
|
|
{
|
|
MainMenu.Run();
|
|
Console.ReadKey();
|
|
}
|
|
}
|
|
}
|