PIbd-22_Aleikin_A.M._Confec.../Confectionery/ConfectioneryView/Program.cs

112 lines
5.0 KiB
C#
Raw Normal View History

2023-05-04 21:14:24 +04:00
using ConfectioneryBusinessLogic.BusinessLogics;
using ConfectioneryBusinessLogic.MailWorker;
2023-03-28 00:43:46 +04:00
using ConfectioneryBusinessLogic.OfficePackage;
using ConfectioneryBusinessLogic.OfficePackage.Implements;
2023-05-04 21:14:24 +04:00
using ConfectioneryContracts.BindingModels;
2023-02-28 02:01:24 +04:00
using ConfectioneryContracts.BusinessLogicsContracts;
using ConfectioneryContracts.StoragesContracts;
2023-03-14 11:35:28 +04:00
using ConfectioneryDatabaseImplement.Implements;
2023-02-28 02:01:24 +04:00
using ConfectioneryView;
using Microsoft.Extensions.DependencyInjection;
using Microsoft.Extensions.Logging;
using NLog.Extensions.Logging;
namespace Confectionery
2023-01-31 12:54:51 +04:00
{
internal static class Program
{
2023-02-28 02:01:24 +04:00
private static ServiceProvider? _serviceProvider;
public static ServiceProvider? ServiceProvider => _serviceProvider;
2023-01-31 12:54:51 +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();
2023-02-28 02:01:24 +04:00
var services = new ServiceCollection();
ConfigureServices(services);
_serviceProvider = services.BuildServiceProvider();
2023-05-04 21:14:24 +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, 1000);
}
catch (Exception ex)
{
var logger = _serviceProvider.GetService<ILogger>();
}
2023-02-28 02:01:24 +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<IClientStorage, ClientStorage>();
2023-02-28 02:01:24 +04:00
services.AddTransient<IComponentStorage, ComponentStorage>();
2023-05-03 23:15:51 +04:00
services.AddTransient<IImplementerStorage, ImplementerStorage>();
2023-05-04 21:14:24 +04:00
services.AddTransient<IMessageInfoStorage, MessageInfoStorage>();
2023-02-28 02:01:24 +04:00
services.AddTransient<IOrderStorage, OrderStorage>();
services.AddTransient<IPastryStorage, PastryStorage>();
services.AddTransient<IClientLogic, ClientLogic>();
2023-02-28 02:01:24 +04:00
services.AddTransient<IComponentLogic, ComponentLogic>();
2023-05-03 23:15:51 +04:00
services.AddTransient<IImplementerLogic, ImplementerLogic>();
2023-05-04 21:14:24 +04:00
services.AddTransient<IMessageInfoLogic, MessageInfoLogic>();
2023-02-28 02:01:24 +04:00
services.AddTransient<IOrderLogic, OrderLogic>();
services.AddTransient<IPastryLogic, PastryLogic>();
2023-03-28 00:43:46 +04:00
services.AddTransient<IReportLogic, ReportLogic>();
2023-05-03 23:15:51 +04:00
services.AddTransient<IWorkProcess, WorkModeling>();
2023-03-28 00:43:46 +04:00
services.AddTransient<AbstractSaveToWord, SaveToWord>();
services.AddTransient<AbstractSaveToExcel, SaveToExcel>();
services.AddTransient<AbstractSaveToPdf, SaveToPdf>();
2023-05-04 21:14:24 +04:00
services.AddSingleton<AbstractMailWorker, MailKitWorker>();
2023-02-28 02:01:24 +04:00
services.AddTransient<FormMain>();
services.AddTransient<FormComponent>();
services.AddTransient<FormComponents>();
services.AddTransient<FormCreateOrder>();
services.AddTransient<FormPastry>();
services.AddTransient<FormPastryComponent>();
services.AddTransient<FormPastries>();
2023-04-10 22:15:47 +04:00
services.AddTransient<FormReportOrders>();
services.AddTransient<FormReportPastryComponents>();
services.AddTransient<FormClients>();
2023-05-03 23:15:51 +04:00
services.AddTransient<FormImplementers>();
services.AddTransient<FormImplementer>();
2023-05-04 21:14:24 +04:00
services.AddTransient<FormMails>();
2023-01-31 12:54:51 +04:00
}
2023-05-04 21:14:24 +04:00
private static void MailCheck(object obj) => ServiceProvider?
.GetService<AbstractMailWorker>()?.MailCheck();
2023-01-31 12:54:51 +04:00
}
}