using System;
using System.Windows.Forms;
using LibraryApp.WinForms.Forms;
using LibraryApp.WinForms.Presenters;
namespace LibraryApp.WinForms
{
static class Program
{
[STAThread]
static void Main()
{
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
var view = new BookForm();
var presenter = new BookPresenter(view);
Application.Run(view);
}
}
}