97 lines
4.7 KiB
C#
Raw Normal View History

2023-02-19 11:27:59 +04:00
using PrecastConcretePlantBusinessLogic.BusinessLogic;
2023-03-22 20:33:00 +04:00
using PrecastConcretePlantBusinessLogic.OfficePackage.Implements;
using PrecastConcretePlantBusinessLogic.OfficePackage;
2023-02-19 11:27:59 +04:00
using PrecastConcretePlantContracts.BusinessLogicsContracts;
using PrecastConcretePlantContracts.StoragesContracts;
2023-03-18 19:33:11 +04:00
using PrecastConcretePlantDatabaseImplement.Implements;
2023-03-22 20:33:00 +04:00
using Microsoft.Extensions.DependencyInjection;
using Microsoft.Extensions.Logging;
using NLog.Extensions.Logging;
using System;
using PrecastConcretePlantBusinessLogic.BusinessLogics;
using PrecastConcretePlantView;
2023-05-20 22:04:30 +03:00
using PrecastConcretePlantBusinessLogic.MailWorker;
using PrecastConcretePlantContracts.BindingModels;
2023-02-19 11:27:59 +04:00
2023-02-19 11:15:20 +04:00
namespace PrecastConcretePlant
{
internal static class Program
{
2023-02-19 11:27:59 +04:00
private static ServiceProvider? _serviceProvider;
public static ServiceProvider? ServiceProvider => _serviceProvider;
2023-02-19 11:15:20 +04:00
[STAThread]
static void Main()
{
ApplicationConfiguration.Initialize();
2023-02-19 11:27:59 +04:00
var services = new ServiceCollection();
ConfigureServices(services);
_serviceProvider = services.BuildServiceProvider();
2023-05-20 22:04:30 +03: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, "Error");
}
2023-02-19 11:27: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>();
services.AddTransient<IOrderStorage, OrderStorage>();
services.AddTransient<IReinforcedStorage, ReinforcedStorage>();
2023-04-05 00:55:08 +04:00
services.AddTransient<IClientStorage, ClientStorage>();
2023-02-19 11:27:59 +04:00
services.AddTransient<IComponentLogic, ComponentLogic>();
services.AddTransient<IOrderLogic, OrderLogic>();
services.AddTransient<IReinforcedLogic, ReinforcedLogic>();
2023-03-22 20:33:00 +04:00
services.AddTransient<IReportLogic, ReportLogic>();
2023-05-20 22:04:30 +03:00
services.AddTransient<IMessageInfoStorage, MessageInfoStorage>();
services.AddTransient<IMessageInfoLogic, MessageInfoLogic>();
2023-04-05 00:55:08 +04:00
services.AddTransient<IClientLogic, ClientLogic>();
2023-04-19 22:48:32 +03:00
services.AddTransient<IImplementerStorage, ImplementerStorage>();
services.AddTransient<IImplementerLogic, ImplementerLogic>();
services.AddTransient<IWorkProcess, WorkModeling>();
2023-03-22 20:33:00 +04:00
services.AddTransient<AbstractSaveToExcel, SaveToExcel>();
services.AddTransient<AbstractSaveToWord, SaveToWord>();
2023-05-20 22:04:30 +03:00
services.AddSingleton<AbstractMailWorker, MailKitWorker>();
2023-03-22 20:33:00 +04:00
services.AddTransient<AbstractSaveToPdf, SaveToPdf>();
2023-05-20 22:04:30 +03:00
services.AddTransient<FormMails>();
2023-03-22 20:33:00 +04:00
2023-02-19 11:27:59 +04:00
services.AddTransient<FormMain>();
services.AddTransient<FormComponent>();
services.AddTransient<FormComponents>();
services.AddTransient<FormCreateOrder>();
services.AddTransient<FormReinforced>();
services.AddTransient<FormReinforcedComponent>();
services.AddTransient<FormReinforceds>();
2023-03-22 20:33:00 +04:00
services.AddTransient<FormReportReinforcedComponents>();
services.AddTransient<FormReportOrders>();
2023-04-05 00:55:08 +04:00
services.AddTransient<FormClients>();
2023-04-19 22:48:32 +03:00
services.AddTransient<FormImplementers>();
services.AddTransient<FormImplementer>();
2023-02-19 11:15:20 +04:00
}
2023-05-20 22:04:30 +03:00
private static void MailCheck(object obj) => ServiceProvider?.GetService<AbstractMailWorker>()?.MailCheck();
2023-02-19 11:15:20 +04:00
}
}