using Data.Repositories; using Data; namespace View { internal static class Program { /// /// The main entry point for the application. /// [STAThread] static void Main() { // Передача репозиториев в конструктор MainForm Application.Run(new FormMain()); } } }