2024-10-28 20:25:02 +04:00
|
|
|
|
2024-10-29 13:51:51 +04:00
|
|
|
using StudentProgressRecord.IRepositories;
|
2024-10-28 21:38:22 +04:00
|
|
|
using StudentProgressRecord.Repositories;
|
|
|
|
using StudentProgressRecord.RepositoryImp;
|
|
|
|
using Unity;
|
|
|
|
using Unity.Lifetime;
|
|
|
|
|
2024-10-28 17:55:57 +04:00
|
|
|
namespace StudentProgressRecord
|
|
|
|
{
|
|
|
|
internal static class Program
|
|
|
|
{
|
|
|
|
/// <summary>
|
|
|
|
/// The main entry point for the application.
|
|
|
|
/// </summary>
|
|
|
|
[STAThread]
|
|
|
|
static void Main()
|
|
|
|
{
|
|
|
|
ApplicationConfiguration.Initialize();
|
2024-10-28 21:38:22 +04:00
|
|
|
Application.Run(new University());
|
|
|
|
}
|
2024-10-28 17:55:57 +04:00
|
|
|
}
|
|
|
|
}
|