PIbd-22_Shabunov_O.A._SushiBar/SushiBarView/Program.cs

12 lines
278 B
C#
Raw Normal View History

2024-05-24 01:56:34 +04:00
namespace SushiBarView
2024-05-15 14:33:48 +04:00
{
internal static class Program
{
[STAThread]
static void Main()
{
2024-05-24 01:56:34 +04:00
Application.Run(new MainForm(new SushiBarBusinessLogic.ChequeLogic(new SushiBarDatabaseImplement.Storages.ChequeStorage())));
2024-05-15 14:33:48 +04:00
}
}
2024-05-24 01:56:34 +04:00
}