PIbd-22_Petrushin_E.A._LawFirm/LawFirm/LawFirmView/Program.cs

109 lines
4.7 KiB
C#
Raw Normal View History

2024-05-06 20:38:44 +04:00
using AbstractLawFirmBusinessLogic.BusinessLogic;
2024-04-07 22:21:31 +04:00
using AbstractLawFirmBusinessLogic.OfficePackage.Implements;
using AbstractLawFirmBusinessLogic.OfficePackage;
2024-02-27 19:44:44 +04:00
using AbstractLawFirmContracts.BusinessLogicsContracts;
using AbstractLawFirmContracts.StoragesContracts;
2024-03-26 00:07:11 +04:00
using AbstractLawFirmDatabaseImplement.Implements;
2024-05-06 20:38:44 +04:00
using AbstractLawFirmBusinessLogic.MailWorker;
2024-02-11 18:24:54 +04:00
using Microsoft.Extensions.DependencyInjection;
using Microsoft.Extensions.Logging;
using NLog.Extensions.Logging;
2024-02-27 19:44:44 +04:00
using System;
using AbstractLawFirmDataBaseImplement.Implements;
2024-05-06 20:38:44 +04:00
using AbstractLawFirmBusinessLogic.MailWorker;
using AbstractLawFirmContracts.BindingModels;
2024-02-11 18:24:54 +04:00
2024-02-14 00:11:21 +04:00
namespace LawFirmView
2024-02-11 18:24:54 +04:00
{
internal static class Program
{
private static ServiceProvider? _serviceProvider;
public static ServiceProvider? ServiceProvider => _serviceProvider;
/// <summary>
2024-02-27 19:44:44 +04:00
/// The main entry point for the application.
2024-02-11 18:24:54 +04:00
/// </summary>
[STAThread]
static void Main()
{
2024-02-27 19:44:44 +04:00
// To customize application configuration such as set high DPI settings or default font,
// see https://aka.ms/applicationconfiguration.
2024-02-11 18:24:54 +04:00
ApplicationConfiguration.Initialize();
var services = new ServiceCollection();
ConfigureServices(services);
_serviceProvider = services.BuildServiceProvider();
2024-05-06 20:38:44 +04:00
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"])
});
// ñîçäàåì òàéìåð
var timer = new System.Threading.Timer(new
TimerCallback(MailCheck!), null, 0, 100000);
}
catch (Exception ex)
{
var logger = _serviceProvider.GetService<ILogger>();
logger?.LogError(ex, "Îøèáêà ðàáîòû ñ ïî÷òîé");
}
Application.Run(_serviceProvider.GetRequiredService<FormMain>());
}
2024-02-11 18:24:54 +04:00
private static void ConfigureServices(ServiceCollection services)
{
services.AddLogging(option =>
{
option.SetMinimumLevel(LogLevel.Information);
option.AddNLog("nlog.config");
});
services.AddTransient<IComponentStorage, ComponentStorage>();
services.AddTransient<IOrderStorage, OrderStorage>();
2024-02-14 00:11:21 +04:00
services.AddTransient<IDocumentStorage, DocumentStorage>();
services.AddTransient<IClientStorage, ClientStorage>();
2024-05-04 20:44:03 +04:00
services.AddTransient<IImplementerStorage, ImplementerStorage>();
2024-02-11 18:24:54 +04:00
services.AddTransient<IComponentLogic, ComponentLogic>();
services.AddTransient<IClientLogic, ClientLogic>();
2024-02-11 18:24:54 +04:00
services.AddTransient<IOrderLogic, OrderLogic>();
2024-02-14 00:11:21 +04:00
services.AddTransient<IDocumentLogic, DocumentLogic>();
2024-04-07 22:21:31 +04:00
services.AddTransient<IReportLogic, ReportLogic>();
2024-05-04 20:44:03 +04:00
services.AddTransient<IImplementerLogic, ImplementerLogic>();
services.AddTransient<IWorkProcess, WorkModeling>();
2024-05-06 20:38:44 +04:00
services.AddTransient<IMessageInfoStorage, MessageInfoStorage>();
services.AddTransient<IMessageInfoLogic, MessageInfoLogic>();
services.AddSingleton<AbstractMailWorker, MailKitWorker>();
services.AddTransient<AbstractSaveToWord, SaveToWord>();
services.AddTransient<AbstractSaveToExcel, SaveToExcel>();
2024-04-07 22:21:31 +04:00
services.AddTransient<AbstractSaveToPdf, SaveToPdf>();
2024-02-11 18:24:54 +04:00
services.AddTransient<FormMain>();
services.AddTransient<FormComponent>();
services.AddTransient<FormComponents>();
services.AddTransient<FormClients>();
2024-02-11 18:24:54 +04:00
services.AddTransient<FormCreateOrder>();
2024-02-14 00:11:21 +04:00
services.AddTransient<FormDocument>();
services.AddTransient<FormDocumentComponent>();
services.AddTransient<FormDocuments>();
2024-04-07 22:21:31 +04:00
services.AddTransient<FormReportDocumentComponents>();
services.AddTransient<FormReportOrders>();
2024-05-06 20:38:44 +04:00
services.AddTransient<Исполнители>();
services.AddTransient<FormImplementer>();
services.AddTransient<FormMail>();
}
private static void MailCheck(object obj) => ServiceProvider?.GetService<AbstractMailWorker>()?.MailCheck();
}
2024-02-11 18:24:54 +04:00
}