106 lines
5.0 KiB
C#
Raw Normal View History

2024-02-14 00:58:39 +04:00
using Microsoft.Extensions.DependencyInjection;
using Microsoft.Extensions.Logging;
using SushiBarContracts.BusinessLogicsContracts;
using System;
using SushiBarBusinessLogic.BusinessLogics;
2024-03-13 15:25:35 +04:00
using SushiBarDatabaseImplement.Implements;
2024-02-14 00:58:39 +04:00
using SushiBarContracts.StoragesContracts;
using SushiBarView;
using NLog.Extensions.Logging;
2024-03-27 17:48:42 +04:00
using SushiBarBusinessLogic.OfficePackage.Implements;
using SushiBarBusinessLogic.OfficePackage;
using SushiBarBusinessLogic;
using SushiBarView.Reports;
using SushiBar.StoragesContracts;
using Microsoft.EntityFrameworkCore.Design;
using SushiBar.BusinessLogicsContracts;
2024-05-08 08:59:50 +04:00
using SushiBarBusinessLogic.MailWorker;
using SushiBarContracts.BindingModels;
2024-02-14 00:58:39 +04:00
2024-02-12 15:00:02 +04:00
namespace SushiBarView
{
internal static class Program
{
2024-02-14 00:58:39 +04:00
private static ServiceProvider? _serviceProvider;
public static ServiceProvider? ServiceProvider => _serviceProvider;
2024-02-12 15:00:02 +04:00
/// <summary>
/// The main entry point for the application.
/// </summary>
[STAThread]
static void Main()
{
ApplicationConfiguration.Initialize();
2024-02-14 00:58:39 +04:00
var services = new ServiceCollection();
ConfigureServices(services);
_serviceProvider = services.BuildServiceProvider();
2024-05-08 08:59:50 +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, "Mails Problem");
}
2024-02-14 00:58:39 +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<ISushiStorage, SushiStorage>();
services.AddTransient<IClientStorage, ClientStorage>();
2024-04-23 21:47:33 +04:00
services.AddTransient<IImplementerStorage, ImplementerStorage>();
2024-05-08 08:59:50 +04:00
services.AddTransient<IMessageInfoStorage, MessageInfoStorage>();
2024-02-14 00:58:39 +04:00
services.AddTransient<IComponentLogic, ComponentLogic>();
services.AddTransient<IOrderLogic, OrderLogic>();
services.AddTransient<ISushiLogic, SushiLogic>();
services.AddTransient<IClientLogic, ClientLogic>();
2024-04-23 21:47:33 +04:00
services.AddTransient<IComponentLogic, ComponentLogic>();
services.AddTransient<IImplementerLogic, ImplementerLogic>();
2024-05-08 08:59:50 +04:00
services.AddTransient<IMessageInfoLogic, MessageInfoLogic>();
2024-04-23 21:47:33 +04:00
services.AddTransient<IWorkProcess, WorkModeling>();
2024-05-08 08:59:50 +04:00
services.AddSingleton<AbstractMailWorker, MailKitWorker>();
2024-02-14 00:58:39 +04:00
services.AddTransient<FormMain>();
services.AddTransient<FormComponent>();
services.AddTransient<FormComponents>();
services.AddTransient<FormCreateOrder>();
services.AddTransient<FormSushis>();
services.AddTransient<FormSushiComponent>();
services.AddTransient<FormSushi>();
2024-03-27 17:48:42 +04:00
services.AddTransient<FormReportOrders>();
services.AddTransient<FormReportSushiComponents>();
2024-04-23 21:47:33 +04:00
services.AddTransient<FormImplementers>();
services.AddTransient<FormImplementer>();
2024-03-27 17:48:42 +04:00
services.AddTransient<IReportLogic, ReportLogic>();
services.AddTransient<FormClients>();
2024-05-08 08:59:50 +04:00
services.AddTransient<FormMail>();
services.AddTransient<EntityFrameworkDesignServicesBuilder>();
2024-03-27 17:48:42 +04:00
services.AddTransient<AbstractSaveToWord, SaveToWord>();
services.AddTransient<AbstractSaveToExcel, SaveToExcel>();
services.AddTransient<AbstractSaveToPdf, SaveToPdf>();
services.AddTransient<FormMain>();
2024-02-12 15:00:02 +04:00
}
2024-05-08 08:59:50 +04:00
private static void MailCheck(object obj) => ServiceProvider?.GetService<AbstractMailWorker>()?.MailCheck();
2024-02-12 15:00:02 +04:00
}
}