103 lines
4.4 KiB
C#
103 lines
4.4 KiB
C#
using AutoWorkshopBusinessLogic.BusinessLogics;
|
||
using AutoWorkshopBusinessLogic.OfficePackage.Implements;
|
||
using AutoWorkshopBusinessLogic.OfficePackage;
|
||
using AutoWorkshopContracts.BusinessLogicContracts;
|
||
using AutoWorkshopContracts.StoragesContracts;
|
||
using AutoWorkshopDatabaseImplement.Implements;
|
||
using AutoWorkshopView.Forms;
|
||
using Microsoft.Extensions.DependencyInjection;
|
||
using Microsoft.Extensions.Logging;
|
||
using NLog.Extensions.Logging;
|
||
using AutoWorkshopContracts.BusinessLogicsContracts;
|
||
using AutoWorkshopBusinessLogic.MailWorker;
|
||
using AutoWorkshopContracts.BindingModels;
|
||
|
||
namespace AutoWorkshopView
|
||
{
|
||
internal static class Program
|
||
{
|
||
private static ServiceProvider? _serviceProvider;
|
||
public static ServiceProvider? ServiceProvider => _serviceProvider;
|
||
|
||
[STAThread]
|
||
static void Main()
|
||
{
|
||
ApplicationConfiguration.Initialize();
|
||
|
||
var Services = new ServiceCollection();
|
||
ConfigureServices(Services);
|
||
|
||
_serviceProvider = Services.BuildServiceProvider();
|
||
|
||
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, "<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>");
|
||
}
|
||
|
||
Application.Run(_serviceProvider.GetRequiredService<MainForm>());
|
||
}
|
||
|
||
private static void MailCheck(object obj) => ServiceProvider?.GetService<AbstractMailWorker>()?.CheckMailAsync();
|
||
|
||
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<IRepairStorage, RepairStorage>();
|
||
Services.AddTransient<IClientStorage, ClientStorage>();
|
||
Services.AddTransient<IImplementerStorage, ImplementerStorage>();
|
||
Services.AddTransient<IMessageInfoStorage, MessageInfoStorage>();
|
||
|
||
Services.AddTransient<IComponentLogic, ComponentLogic>();
|
||
Services.AddTransient<IOrderLogic, OrderLogic>();
|
||
Services.AddTransient<IRepairLogic, RepairLogic>();
|
||
Services.AddTransient<IReportLogic, ReportLogic>();
|
||
Services.AddTransient<IClientLogic, ClientLogic>();
|
||
Services.AddTransient<IImplementerLogic, ImplementerLogic>();
|
||
Services.AddTransient<IWorkProcess, WorkModeling>();
|
||
Services.AddTransient<IMessageInfoLogic, MessageInfoLogic>();
|
||
|
||
Services.AddTransient<AbstractSaveToWord, SaveToWord>();
|
||
Services.AddTransient<AbstractSaveToExcel, SaveToExcel>();
|
||
Services.AddTransient<AbstractSaveToPdf, SaveToPdf>();
|
||
Services.AddSingleton<AbstractMailWorker, MailKitWorker>();
|
||
|
||
Services.AddTransient<MainForm>();
|
||
Services.AddTransient<FormComponent>();
|
||
Services.AddTransient<FormComponents>();
|
||
Services.AddTransient<FormCreateOrder>();
|
||
Services.AddTransient<FormRepair>();
|
||
Services.AddTransient<FormRepairComponent>();
|
||
Services.AddTransient<FormRepairs>();
|
||
Services.AddTransient<FormReportRepairComponents>();
|
||
Services.AddTransient<FormReportOrders>();
|
||
Services.AddTransient<FormClients>();
|
||
Services.AddTransient<FormImplementers>();
|
||
Services.AddTransient<FormImplementer>();
|
||
Services.AddTransient<FormMail>();
|
||
}
|
||
}
|
||
}
|