PIbd-21_Yaruskin_S.A_MotorP.../MotorPlant/MotorPlantView/Program.cs

104 lines
5.0 KiB
C#
Raw Normal View History

2024-02-24 01:57:59 +04:00
using MotorPlantView.Forms;
using MotorPlantContracts.BusinessLogicsContracts;
using MotorPlantContracts.StoragesContracts;
2024-03-22 22:40:04 +04:00
using MotorPlantDatabaseImplement.Implements;
2024-02-24 01:57:59 +04:00
using Microsoft.Extensions.DependencyInjection;
using Microsoft.Extensions.Logging;
using NLog.Extensions.Logging;
using MotorPlantBusinessLogic.BusinessLogics;
2024-04-04 00:19:40 +04:00
using MotorPlantBusinessLogic.BusinessLogic;
using MotorPlantBusinessLogic.OfficePackage.Implements;
using MotorPlantBusinessLogic.OfficePackage;
2024-04-04 14:56:17 +04:00
using System.Text;
using MotorPlantBusinessLogic.MailWorker;
using MotorPlantContracts.BindingModels;
2024-02-24 01:57:59 +04:00
2024-02-23 19:51:52 +04:00
namespace MotorPlantView
{
internal static class Program
{
2024-02-24 01:57:59 +04:00
private static ServiceProvider? _serviceProvider;
public static ServiceProvider? ServiceProvider => _serviceProvider;
2024-02-23 19:51:52 +04:00
/// <summary>
/// The main entry point for the application.
/// </summary>
[STAThread]
static void Main()
{
2024-04-04 14:56:17 +04:00
Encoding.RegisterProvider(CodePagesEncodingProvider.Instance);
2024-02-23 19:51:52 +04:00
// To customize application configuration such as set high DPI settings or default font,
// see https://aka.ms/applicationconfiguration.
ApplicationConfiguration.Initialize();
2024-02-24 01:57:59 +04:00
var services = new ServiceCollection();
ConfigureServices(services);
_serviceProvider = services.BuildServiceProvider();
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"])
});
2024-02-24 01:57:59 +04:00
var timer = new System.Threading.Timer(new TimerCallback(MailCheck!), null, 0, 100000);
}
catch (Exception ex)
{
var logger = _serviceProvider.GetService<ILogger>();
logger?.LogError(ex, "Mails Problem");
}
2024-02-24 01:57:59 +04:00
Application.Run(_serviceProvider.GetRequiredService<FormMain>());
}
private static void ConfigureServices(ServiceCollection services)
{
services.AddLogging(option =>
{
option.SetMinimumLevel(LogLevel.Information);
option.AddNLog("nlog.config");
});
services.AddTransient<IComponentStorage, ComponentStorage>();
2024-04-19 13:43:16 +04:00
services.AddTransient<IImplementerStorage, ImplementerStorage>();
services.AddTransient<IOrderStorage, OrderStorage>();
2024-02-24 01:57:59 +04:00
services.AddTransient<IEngineStorage, EngineStorage>();
2024-04-07 23:21:39 +04:00
services.AddTransient<IClientStorage, ClientStorage>();
services.AddTransient<IMessageInfoStorage, MessageInfoStorage>();
2024-04-07 23:21:39 +04:00
services.AddTransient<IComponentLogic, ComponentLogic>();
2024-04-19 13:43:16 +04:00
services.AddTransient<IComponentLogic, ComponentLogic>();
services.AddTransient<IImplementerLogic, ImplementerLogic>();
services.AddTransient<IOrderLogic, OrderLogic>();
2024-02-24 01:57:59 +04:00
services.AddTransient<IEngineLogic, EngineLogic>();
2024-04-04 00:19:40 +04:00
services.AddTransient<IReportLogic, ReportLogic>();
2024-04-07 23:21:39 +04:00
services.AddTransient<IClientLogic, ClientLogic>();
2024-04-19 13:43:16 +04:00
services.AddTransient<IWorkProcess, WorkModeling>();
services.AddTransient<IMessageInfoLogic, MessageInfoLogic>();
services.AddTransient<IWorkProcess, WorkModeling>();
2024-04-04 00:19:40 +04:00
services.AddTransient<AbstractSaveToExcel, SaveToExcel>();
2024-04-04 00:19:40 +04:00
services.AddTransient<AbstractSaveToPdf, SaveToPdf>();
2024-04-07 23:21:39 +04:00
services.AddTransient<AbstractSaveToWord, SaveToWord>();
services.AddSingleton<AbstractMailWorker, MailKitWorker>();
2024-04-07 23:21:39 +04:00
2024-02-24 01:57:59 +04:00
services.AddTransient<FormMain>();
services.AddTransient<FormComponent>();
services.AddTransient<FormComponents>();
services.AddTransient<FormCreateOrder>();
services.AddTransient<FormEngine>();
services.AddTransient<FormEngineComponent>();
services.AddTransient<FormEngines>();
2024-04-04 00:19:40 +04:00
services.AddTransient<FormReportOrders>();
2024-04-07 23:21:39 +04:00
services.AddTransient<FormReportEngineComponents>();
services.AddTransient<FormClients>();
2024-04-19 13:43:16 +04:00
services.AddTransient<FormImplementers>();
services.AddTransient<FormImplementer>();
services.AddTransient<FormMail>();
}
private static void MailCheck(object obj) => ServiceProvider?.GetService<AbstractMailWorker>()?.MailCheck();
2024-02-23 19:51:52 +04:00
}
}