PIbd-21_Blokhin_D.A._FishFa.../FishFactory/FishFactoryView/Program.cs

94 lines
4.5 KiB
C#
Raw Normal View History

2024-05-15 22:47:25 +04:00
using FishFactoryBusinessLogic.BusinessLogics;
2024-03-06 18:11:48 +04:00
using FishFactoryContracts.BusinessLogicsContracts;
using FishFactoryContracts.StoragesContracts;
2024-03-09 08:34:25 +04:00
using FishFactoryDatabaseImplement.Implements;
2024-04-04 15:51:08 +04:00
using FishFactoryBusinessLogic.OfficePackage.Implements;
using FishFactoryBusinessLogic.OfficePackage;
2024-03-06 18:11:48 +04:00
using Microsoft.Extensions.DependencyInjection;
using Microsoft.Extensions.Logging;
using NLog.Extensions.Logging;
2024-05-15 22:47:25 +04:00
using FishFactoryBusinessLogic.MailWorker;
using FishFactoryContracts.BindingModels;
2024-03-06 18:11:48 +04:00
namespace FishFactoryView
{
internal static class Program
{
private static ServiceProvider? _serviceProvider;
public static ServiceProvider? ServiceProvider => _serviceProvider;
/// <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();
var services = new ServiceCollection();
ConfigureServices(services);
_serviceProvider = services.BuildServiceProvider();
2024-05-15 22:47:25 +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<MainForm>());
}
2024-03-06 18:11:48 +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>();
services.AddTransient<ICannedStorage, CannedStorage>();
2024-04-18 18:38:50 +04:00
services.AddTransient<IClientStorage, ClientStorage>();
2024-05-15 22:47:25 +04:00
services.AddTransient<IMessageInfoStorage, MessageInfoStorage>();
2024-03-06 18:11:48 +04:00
services.AddTransient<IComponentLogic, ComponentLogic>();
services.AddTransient<IOrderLogic, OrderLogic>();
services.AddTransient<ICannedLogic, CannedLogic>();
2024-04-04 15:51:08 +04:00
services.AddTransient<IReportLogic, ReportLogic>();
2024-04-18 18:38:50 +04:00
services.AddTransient<IClientLogic, ClientLogic>();
2024-05-02 18:22:55 +04:00
services.AddTransient<IImplementerLogic, ImplementerLogic>();
2024-05-15 22:47:25 +04:00
services.AddTransient<IMessageInfoLogic, MessageInfoLogic>();
2024-05-02 18:22:55 +04:00
services.AddTransient<IImplementerStorage, ImplementerStorage>();
services.AddTransient<IWorkProcess, WorkModeling>();
2024-05-15 22:47:25 +04:00
services.AddSingleton<AbstractMailWorker, MailKitWorker>();
2024-05-02 18:22:55 +04:00
services.AddTransient<AbstractSaveToExcel, SaveToExcel>();
2024-04-04 15:51:08 +04:00
services.AddTransient<AbstractSaveToWord, SaveToWord>();
services.AddTransient<AbstractSaveToPdf, SaveToPdf>();
2024-03-06 18:11:48 +04:00
services.AddTransient<MainForm>();
services.AddTransient<FormComponent>();
services.AddTransient<FormComponents>();
services.AddTransient<FormCreateOrder>();
services.AddTransient<FormCanned>();
services.AddTransient<FormCannedComponent>();
2024-04-18 18:38:50 +04:00
services.AddTransient<FormClients>();
2024-03-06 18:11:48 +04:00
services.AddTransient<FormCanneds>();
2024-04-04 15:51:08 +04:00
services.AddTransient<FormReportCannedComponents>();
services.AddTransient<FormReportOrders>();
2024-05-02 18:22:55 +04:00
services.AddTransient<FormImplementer>();
services.AddTransient<FormImplementers>();
2024-05-15 22:47:25 +04:00
services.AddTransient<FormViewMail>();
2024-05-02 18:22:55 +04:00
}
2024-05-15 22:47:25 +04:00
private static void MailCheck(object obj) => ServiceProvider?.GetService<AbstractMailWorker>()?.MailCheck();
2024-03-06 18:11:48 +04:00
}
}