2024-02-24 01:57:59 +04:00
|
|
|
using MotorPlantView.Forms;
|
|
|
|
using MotorPlantContracts.BusinessLogicsContracts;
|
|
|
|
using MotorPlantContracts.StoragesContracts;
|
2024-03-22 22:40:04 +04:00
|
|
|
using MotorPlantDatabaseImplement.Implements;
|
2024-02-24 01:57:59 +04:00
|
|
|
using Microsoft.Extensions.DependencyInjection;
|
|
|
|
using Microsoft.Extensions.Logging;
|
|
|
|
using NLog.Extensions.Logging;
|
|
|
|
using MotorPlantBusinessLogic.BusinessLogics;
|
2024-04-04 00:19:40 +04:00
|
|
|
using MotorPlantBusinessLogic.BusinessLogic;
|
|
|
|
using MotorPlantBusinessLogic.OfficePackage.Implements;
|
|
|
|
using MotorPlantBusinessLogic.OfficePackage;
|
2024-04-04 14:56:17 +04:00
|
|
|
using System.Text;
|
2024-05-03 04:32:02 +04:00
|
|
|
using MotorPlantBusinessLogic.MailWorker;
|
|
|
|
using MotorPlantContracts.BindingModels;
|
2024-05-25 16:04:21 +04:00
|
|
|
using MotorPlantContracts.DI;
|
2024-02-24 01:57:59 +04:00
|
|
|
|
2024-02-23 19:51:52 +04:00
|
|
|
namespace MotorPlantView
|
|
|
|
{
|
2024-05-25 16:04:21 +04:00
|
|
|
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()
|
|
|
|
{
|
|
|
|
Encoding.RegisterProvider(CodePagesEncodingProvider.Instance);
|
|
|
|
// To customize application configuration such as set high DPI settings or default font,
|
|
|
|
// see https://aka.ms/applicationconfiguration.
|
|
|
|
ApplicationConfiguration.Initialize();
|
|
|
|
InitDependency();
|
|
|
|
try
|
|
|
|
{
|
|
|
|
var mailSender = DependencyManager.Instance.Resolve<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"])
|
|
|
|
});
|
2024-02-24 01:57:59 +04:00
|
|
|
|
2024-05-25 16:04:21 +04:00
|
|
|
var timer = new System.Threading.Timer(new TimerCallback(MailCheck!), null, 0, 100000);
|
|
|
|
}
|
|
|
|
catch (Exception ex)
|
|
|
|
{
|
|
|
|
var logger = DependencyManager.Instance.Resolve<ILogger>();
|
|
|
|
logger?.LogError(ex, "Mails Problem");
|
|
|
|
}
|
|
|
|
Application.Run(DependencyManager.Instance.Resolve<FormMain>());
|
|
|
|
}
|
|
|
|
private static void InitDependency()
|
|
|
|
{
|
|
|
|
DependencyManager.InitDependency();
|
2024-04-07 23:21:39 +04:00
|
|
|
|
2024-05-25 16:04:21 +04:00
|
|
|
DependencyManager.Instance.AddLogging(option =>
|
|
|
|
{
|
|
|
|
option.SetMinimumLevel(LogLevel.Information);
|
|
|
|
option.AddNLog("nlog.config");
|
|
|
|
});
|
2024-04-04 00:19:40 +04:00
|
|
|
|
2024-05-25 16:04:21 +04:00
|
|
|
DependencyManager.Instance.RegisterType<IClientLogic, ClientLogic>();
|
|
|
|
DependencyManager.Instance.RegisterType<IComponentLogic, ComponentLogic>();
|
|
|
|
DependencyManager.Instance.RegisterType<IOrderLogic, OrderLogic>();
|
|
|
|
DependencyManager.Instance.RegisterType<IEngineLogic, EngineLogic>();
|
|
|
|
DependencyManager.Instance.RegisterType<IReportLogic, ReportLogic>();
|
|
|
|
DependencyManager.Instance.RegisterType<IImplementerLogic, ImplementerLogic>();
|
|
|
|
DependencyManager.Instance.RegisterType<IMessageInfoLogic, MessageInfoLogic>();
|
|
|
|
DependencyManager.Instance.RegisterType<IBackUpLogic, BackUpLogic>();
|
2024-04-07 23:21:39 +04:00
|
|
|
|
2024-05-25 16:04:21 +04:00
|
|
|
DependencyManager.Instance.RegisterType<AbstractSaveToExcel, SaveToExcel>();
|
|
|
|
DependencyManager.Instance.RegisterType<AbstractSaveToPdf, SaveToPdf>();
|
|
|
|
DependencyManager.Instance.RegisterType<AbstractSaveToWord, SaveToWord>();
|
|
|
|
DependencyManager.Instance.RegisterType<AbstractMailWorker, MailKitWorker>(true);
|
2024-05-03 04:32:02 +04:00
|
|
|
|
2024-05-25 16:04:21 +04:00
|
|
|
DependencyManager.Instance.RegisterType<IWorkProcess, WorkModeling>();
|
|
|
|
|
|
|
|
DependencyManager.Instance.RegisterType<FormMain>();
|
|
|
|
DependencyManager.Instance.RegisterType<FormComponent>();
|
|
|
|
DependencyManager.Instance.RegisterType<FormComponents>();
|
|
|
|
DependencyManager.Instance.RegisterType<FormCreateOrder>();
|
|
|
|
DependencyManager.Instance.RegisterType<FormEngine>();
|
|
|
|
DependencyManager.Instance.RegisterType<FormEngineComponent>();
|
|
|
|
DependencyManager.Instance.RegisterType<FormEngines>();
|
|
|
|
DependencyManager.Instance.RegisterType<FormReportOrders>();
|
|
|
|
DependencyManager.Instance.RegisterType<FormReportEngineComponents>();
|
|
|
|
DependencyManager.Instance.RegisterType<FormClients>();
|
|
|
|
DependencyManager.Instance.RegisterType<FormImplementers>();
|
|
|
|
DependencyManager.Instance.RegisterType<FormImplementer>();
|
|
|
|
DependencyManager.Instance.RegisterType<FormMail>();
|
|
|
|
}
|
|
|
|
|
|
|
|
private static void MailCheck(object obj) => DependencyManager.Instance.Resolve<AbstractMailWorker>()?.MailCheck();
|
|
|
|
}
|
2024-02-23 19:51:52 +04:00
|
|
|
}
|