2023-02-05 21:54:36 +04:00
|
|
|
using JewelryStoreContracts.BusinessLogicsContracts;
|
|
|
|
using JewelryStoreContracts.StoragesContracts;
|
|
|
|
using JewelryStoreBusinessLogic.BusinessLogics;
|
2023-03-05 19:31:05 +04:00
|
|
|
using JewelryStoreDatabaseImplement.Implements;
|
2023-02-05 21:54:36 +04:00
|
|
|
|
|
|
|
using Microsoft.Extensions.DependencyInjection;
|
|
|
|
using System.Drawing;
|
|
|
|
using Microsoft.Extensions.Logging;
|
|
|
|
using NLog.Extensions.Logging;
|
2023-03-20 21:04:04 +04:00
|
|
|
using JewelryStoreBusinessLogic.OfficePackage;
|
|
|
|
using JewelryStoreBusinessLogic.OfficePackage.Implements;
|
2023-04-30 18:15:47 +04:00
|
|
|
using JewelryStoreBusinessLogic.MailWorker;
|
|
|
|
using JewelryStoreContracts.BindingModels;
|
2023-05-02 14:50:43 +04:00
|
|
|
using JewelryStoreContracts.DI;
|
2023-02-05 21:54:36 +04:00
|
|
|
|
2023-02-05 17:01:57 +04:00
|
|
|
namespace JewelryStore
|
|
|
|
{
|
|
|
|
internal static class Program
|
|
|
|
{
|
2023-05-02 14:50:43 +04:00
|
|
|
|
2023-02-05 17:01:57 +04:00
|
|
|
/// <summary>
|
2023-02-05 21:54:36 +04:00
|
|
|
/// The main entry point for the application.
|
2023-02-05 17:01:57 +04:00
|
|
|
/// </summary>
|
|
|
|
[STAThread]
|
|
|
|
static void Main()
|
|
|
|
{
|
2023-05-02 14:50:43 +04:00
|
|
|
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"])
|
|
|
|
});
|
2023-04-30 18:15:47 +04:00
|
|
|
|
2023-05-02 14:50:43 +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, "<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>");
|
|
|
|
}
|
2023-04-03 19:28:19 +04:00
|
|
|
|
2023-05-02 14:50:43 +04:00
|
|
|
Application.Run(DependencyManager.Instance.Resolve<FormMain>());
|
|
|
|
}
|
2023-03-20 21:04:04 +04:00
|
|
|
|
2023-05-02 14:50:43 +04:00
|
|
|
private static void InitDependency()
|
|
|
|
{
|
|
|
|
DependencyManager.InitDependency();
|
2023-04-17 23:38:44 +04:00
|
|
|
|
2023-05-02 14:50:43 +04:00
|
|
|
DependencyManager.Instance.AddLogging(option =>
|
|
|
|
{
|
|
|
|
option.SetMinimumLevel(LogLevel.Information);
|
|
|
|
option.AddNLog("nlog.config");
|
|
|
|
});
|
|
|
|
DependencyManager.Instance.RegisterType<IComponentLogic, ComponentLogic>();
|
|
|
|
DependencyManager.Instance.RegisterType<IOrderLogic, OrderLogic>();
|
|
|
|
DependencyManager.Instance.RegisterType<IJewelLogic, JewelLogic>();
|
|
|
|
DependencyManager.Instance.RegisterType<IReportLogic, ReportLogic>();
|
|
|
|
DependencyManager.Instance.RegisterType<IClientLogic, ClientLogic>();
|
|
|
|
DependencyManager.Instance.RegisterType<IImplementerLogic, ImplementerLogic>();
|
|
|
|
DependencyManager.Instance.RegisterType<IMessageInfoLogic, MessageInfoLogic>();
|
|
|
|
DependencyManager.Instance.RegisterType<IWorkProcess, WorkModeling>();
|
|
|
|
DependencyManager.Instance.RegisterType<IBackUpLogic, BackUpLogic>();
|
2023-03-20 21:04:04 +04:00
|
|
|
|
2023-05-02 14:50:43 +04:00
|
|
|
DependencyManager.Instance.RegisterType<AbstractMailWorker, MailKitWorker>(true);
|
2023-05-02 11:38:30 +04:00
|
|
|
|
2023-05-02 14:50:43 +04:00
|
|
|
DependencyManager.Instance.RegisterType<AbstractSaveToExcel, SaveToExcel>();
|
|
|
|
DependencyManager.Instance.RegisterType<AbstractSaveToWord, SaveToWord>();
|
|
|
|
DependencyManager.Instance.RegisterType<AbstractSaveToPdf, SaveToPdf>();
|
2023-03-20 21:04:04 +04:00
|
|
|
|
2023-05-02 14:50:43 +04:00
|
|
|
DependencyManager.Instance.RegisterType<FormMain>();
|
|
|
|
DependencyManager.Instance.RegisterType<FormComponent>();
|
|
|
|
DependencyManager.Instance.RegisterType<FormComponents>();
|
|
|
|
DependencyManager.Instance.RegisterType<FormCreateOrder>();
|
|
|
|
DependencyManager.Instance.RegisterType<FormJewel>();
|
|
|
|
DependencyManager.Instance.RegisterType<FormJewelComponent>();
|
|
|
|
DependencyManager.Instance.RegisterType<FormJewels>();
|
|
|
|
DependencyManager.Instance.RegisterType<FormReportJewelComponents>();
|
|
|
|
DependencyManager.Instance.RegisterType<FormReportOrders>();
|
|
|
|
DependencyManager.Instance.RegisterType<FormClients>();
|
|
|
|
DependencyManager.Instance.RegisterType<FormImplementers>();
|
|
|
|
DependencyManager.Instance.RegisterType<FormImplementer>();
|
|
|
|
DependencyManager.Instance.RegisterType<FormMails>();
|
|
|
|
}
|
|
|
|
private static void MailCheck(object obj) => DependencyManager.Instance.Resolve<AbstractMailWorker>()?.MailCheck();
|
|
|
|
}
|
2023-02-05 17:01:57 +04:00
|
|
|
}
|