PIbd-21_MasenkinMS_Aircraft.../AircraftPlant/AircraftPlantView/Program.cs

119 lines
5.0 KiB
C#
Raw Permalink Normal View History

2024-02-21 01:42:28 +04:00
using AircraftPlantBusinessLogic.BusinessLogics;
2024-03-25 00:53:24 +04:00
using AircraftPlantBusinessLogic.OfficePackage.Implements;
using AircraftPlantBusinessLogic.OfficePackage;
2024-02-21 01:42:28 +04:00
using AircraftPlantContracts.BusinessLogicsContracts;
using AircraftPlantContracts.StoragesContracts;
2024-03-10 01:33:27 +04:00
using AircraftPlantDatabaseImplement.Implements;
2024-02-21 01:42:28 +04:00
using Microsoft.Extensions.DependencyInjection;
using Microsoft.Extensions.Logging;
using NLog.Extensions.Logging;
using System;
2024-05-04 22:30:27 +04:00
using AircraftPlantBusinessLogic.MailWorker;
using AircraftPlantContracts.BindingModels;
2024-02-21 01:42:28 +04:00
2024-02-12 00:31:55 +04:00
namespace AircraftPlantView
{
internal static class Program
{
2024-02-21 01:42:28 +04:00
/// <summary>
/// IoC-<2D><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
/// </summary>
private static ServiceProvider? _serviceProvider;
public static ServiceProvider? ServiceProvider => _serviceProvider;
2024-02-12 00:31:55 +04:00
/// <summary>
/// The main entry point for the application.
/// </summary>
[STAThread]
static void Main()
{
// To customize application configuration such as set high DPI settings or default font,
// see https://aka.ms/applicationconfiguration.
ApplicationConfiguration.Initialize();
2024-02-21 01:42:28 +04:00
var services = new ServiceCollection();
ConfigureServices(services);
_serviceProvider = services.BuildServiceProvider();
2024-05-04 22:30:27 +04:00
// <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD>
try
{
var mailSender = _serviceProvider.GetService<AbstractMailWorker>();
mailSender?.MailConfig(new MailConfigBindingModel
{
MailLogin = System.Configuration.ConfigurationManager.AppSettings["MailLogin"] ?? string.Empty,
MailPassword = System.Configuration.ConfigurationManager.AppSettings["MailPassword"] ?? string.Empty,
SmtpClientHost = System.Configuration.ConfigurationManager.AppSettings["SmtpClientHost"] ?? string.Empty,
SmtpClientPort = Convert.ToInt32(System.Configuration.ConfigurationManager.AppSettings["SmtpClientPort"]),
PopHost = System.Configuration.ConfigurationManager.AppSettings["PopHost"] ?? string.Empty,
PopPort = Convert.ToInt32(System.Configuration.ConfigurationManager.AppSettings["PopPort"])
});
// <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
var timer = new System.Threading.Timer(new TimerCallback(MailCheck!), null, 0, 60000);
}
catch (Exception ex)
{
var logger = _serviceProvider.GetService<ILogger>();
logger?.LogError(ex, "<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>");
}
Application.Run(_serviceProvider.GetRequiredService<FormMain>());
2024-02-21 01:42:28 +04:00
}
/// <summary>
/// <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> IoC-<2D><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
/// </summary>
/// <param name="services"></param>
private static void ConfigureServices(ServiceCollection services)
{
services.AddLogging(option =>
{
option.SetMinimumLevel(LogLevel.Information);
option.AddNLog("nlog.config");
});
2024-04-07 00:02:29 +04:00
services.AddTransient<IClientStorage, ClientStorage>();
2024-04-20 22:35:38 +04:00
services.AddTransient<IImplementerStorage, ImplementerStorage>();
2024-02-21 01:42:28 +04:00
services.AddTransient<IComponentStorage, ComponentStorage>();
services.AddTransient<IOrderStorage, OrderStorage>();
services.AddTransient<IPlaneStorage, PlaneStorage>();
2024-05-04 22:30:27 +04:00
services.AddTransient<IMessageInfoStorage, MessageInfoStorage>();
2024-02-21 01:42:28 +04:00
2024-04-07 00:02:29 +04:00
services.AddTransient<IClientLogic, ClientLogic>();
2024-04-20 22:35:38 +04:00
services.AddTransient<IImplementerLogic, ImplementerLogic>();
2024-02-21 01:42:28 +04:00
services.AddTransient<IComponentLogic, ComponentLogic>();
services.AddTransient<IOrderLogic, OrderLogic>();
services.AddTransient<IPlaneLogic, PlaneLogic>();
2024-03-25 00:53:24 +04:00
services.AddTransient<IReportLogic, ReportLogic>();
2024-05-04 22:30:27 +04:00
services.AddTransient<IMessageInfoLogic, MessageInfoLogic>();
2024-04-20 22:35:38 +04:00
services.AddTransient<IWorkProcess, WorkModeling>();
2024-05-04 22:30:27 +04:00
services.AddSingleton<AbstractMailWorker, MailKitWorker>();
2024-03-25 00:53:24 +04:00
services.AddTransient<AbstractSaveToWord, SaveToWord>();
services.AddTransient<AbstractSaveToExcel, SaveToExcel>();
services.AddTransient<AbstractSaveToPdf, SaveToPdf>();
2024-02-21 01:42:28 +04:00
services.AddTransient<FormMain>();
2024-04-07 00:02:29 +04:00
services.AddTransient<FormClients>();
2024-04-20 22:35:38 +04:00
services.AddTransient<FormImplementers>();
services.AddTransient<FormImplementer>();
2024-02-21 01:42:28 +04:00
services.AddTransient<FormComponent>();
services.AddTransient<FormComponents>();
services.AddTransient<FormCreateOrder>();
services.AddTransient<FormPlane>();
services.AddTransient<FormPlaneComponent>();
services.AddTransient<FormPlanes>();
2024-03-25 00:53:24 +04:00
services.AddTransient<FormReportPlaneComponents>();
services.AddTransient<FormReportOrders>();
2024-05-04 22:30:27 +04:00
services.AddTransient<FormMail>();
2024-02-12 00:31:55 +04:00
}
2024-05-04 22:30:27 +04:00
/// <summary>
/// <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD>
/// </summary>
/// <param name="obj"></param>
private static void MailCheck(object obj) => ServiceProvider?.GetService<AbstractMailWorker>()?.MailCheck();
2024-02-12 00:31:55 +04:00
}
}