12 lines
278 B
C#
12 lines
278 B
C#
namespace SushiBarView
|
|
{
|
|
internal static class Program
|
|
{
|
|
[STAThread]
|
|
static void Main()
|
|
{
|
|
Application.Run(new MainForm(new SushiBarBusinessLogic.ChequeLogic(new SushiBarDatabaseImplement.Storages.ChequeStorage())));
|
|
}
|
|
}
|
|
}
|