PIbd-22_Chernyshev_G.J._30_.../GarmentFactory/Program.cs

100 lines
4.5 KiB
C#
Raw Normal View History

using GarmentFactoryBusinessLogic.BusinessLogics;
using GarmentFactoryBusinessLogic.OfficePackage.Implements;
using GarmentFactoryBusinessLogic.OfficePackage;
2024-03-06 09:21:43 +04:00
using GarmentFactoryContracts.BusinessLogicsContracts;
using GarmentFactoryContracts.StoragesContracts;
2024-03-20 10:21:07 +04:00
using GarmentFactoryDatabaseImplement.Implements;
2024-03-06 09:21:43 +04:00
using GarmentFactoryView;
using Microsoft.Extensions.DependencyInjection;
using Microsoft.Extensions.Logging;
using NLog.Extensions.Logging;
2024-05-05 18:46:39 +04:00
using GarmentFactoryBusinessLogic.MailWorker;
using GarmentFactoryContracts.BindingModels;
2024-03-06 09:21:43 +04:00
2024-02-05 14:33:48 +04:00
namespace GarmentFactory
{
internal static class Program
{
2024-03-06 09:21:43 +04:00
private static ServiceProvider? _serviceProvider;
public static ServiceProvider? ServiceProvider => _serviceProvider;
2024-02-05 14:33:48 +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-03-06 09:21:43 +04:00
var services = new ServiceCollection();
ConfigureServices(services);
_serviceProvider = services.BuildServiceProvider();
2024-05-05 18:46:39 +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"])
});
// <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
var timer = new System.Threading.Timer(new TimerCallback(MailCheck!), null, 0, 100000);
}
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-03-06 09:21:43 +04:00
}
private static void ConfigureServices(ServiceCollection services)
{
services.AddLogging(option =>
{
option.SetMinimumLevel(LogLevel.Information);
option.AddNLog("nlog.config");
});
2024-04-17 10:42:00 +04:00
services.AddTransient<IImplementerStorage, ImplementerStorage>();
services.AddTransient<IClientStorage, ClientStorage>();
2024-03-06 09:21:43 +04:00
services.AddTransient<IComponentStorage, ComponentStorage>();
services.AddTransient<IOrderStorage, OrderStorage>();
services.AddTransient<ITextileStorage, TextileStorage>();
2024-05-05 18:46:39 +04:00
services.AddTransient<IMessageInfoStorage, MessageInfoStorage>();
2024-03-16 20:47:16 +04:00
2024-04-17 10:42:00 +04:00
services.AddTransient<IImplementerLogic, ImplementerLogic>();
services.AddTransient<IClientLogic, ClientLogic>();
2024-03-06 09:21:43 +04:00
services.AddTransient<IComponentLogic, ComponentLogic>();
services.AddTransient<IOrderLogic, OrderLogic>();
services.AddTransient<ITextileLogic, TextileLogic>();
services.AddTransient<IReportLogic, ReportLogic>();
2024-05-05 18:46:39 +04:00
services.AddTransient<IMessageInfoLogic, MessageInfoLogic>();
2024-04-17 10:42:00 +04:00
services.AddTransient<IWorkProcess, WorkModeling>();
2024-04-17 10:42:00 +04:00
services.AddTransient<AbstractSaveToWord, SaveToWord>();
services.AddTransient<AbstractSaveToExcel, SaveToExcel>();
services.AddTransient<AbstractSaveToPdf, SaveToPdf>();
2024-05-05 18:46:39 +04:00
services.AddSingleton<AbstractMailWorker, MailKitWorker>();
2024-03-16 20:47:16 +04:00
2024-05-05 18:46:39 +04:00
services.AddTransient<FormMain>();
2024-03-06 09:21:43 +04:00
services.AddTransient<FormComponent>();
services.AddTransient<FormComponents>();
services.AddTransient<FormCreateOrder>();
services.AddTransient<FormTextile>();
services.AddTransient<FormTextileComponent>();
services.AddTransient<FormTextiles>();
services.AddTransient<FormReportTextileComponents>();
services.AddTransient<FormReportOrders>();
2024-04-11 13:43:22 +04:00
services.AddTransient<FormClients>();
2024-04-17 10:42:00 +04:00
services.AddTransient<FormImplementers>();
services.AddTransient<FormImplementer>();
2024-05-05 18:46:39 +04:00
services.AddTransient<FormMails>();
2024-04-17 10:42:00 +04:00
}
2024-05-05 18:46:39 +04:00
private static void MailCheck(object obj) => ServiceProvider?.GetService<AbstractMailWorker>()?.MailCheck();
}
2024-02-05 14:33:48 +04:00
}