105 lines
4.9 KiB
C#
Raw Normal View History

2023-02-13 02:45:41 +04:00
using DressAtelierBusinessLogic.BusinessLogic;
using DressAtelierBusinessLogic.MailEmployee;
using DressAtelierBusinessLogic.OfficePackage;
using DressAtelierBusinessLogic.OfficePackage.Implements;
using DressAtelierContracts.BindingModels;
2023-02-13 02:45:41 +04:00
using DressAtelierContracts.BusinessLogicContracts;
using DressAtelierContracts.StorageContracts;
2023-04-09 23:35:56 +04:00
using DressAtelierDatabaseImplement.Implements;
2023-04-03 18:23:45 +04:00
using DressAtelierDatabaseImplementation.Implements;
2023-02-13 02:45:41 +04:00
using Microsoft.Extensions.DependencyInjection;
using Microsoft.Extensions.Logging;
using NLog.Extensions.Logging;
2023-01-29 15:36:14 +04:00
namespace SewingDresses
{
internal static class Program
{
2023-02-13 02:45:41 +04:00
private static ServiceProvider? _serviceProvider;
public static ServiceProvider? ServiceProvider => _serviceProvider;
2023-01-29 15:36:14 +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-13 02:45:41 +04:00
var services = new ServiceCollection();
ConfigureServices(services);
_serviceProvider = services.BuildServiceProvider();
try
{
var mailSender = _serviceProvider.GetService<AbstractMailEmployee>();
mailSender?.MailConfig(new MailConfigBindingModel
{
Login = System.Configuration.ConfigurationManager.AppSettings["MailLogin"] ?? string.Empty,
Password = System.Configuration.ConfigurationManager.AppSettings["MailPassword"] ?? string.Empty,
SmtpClientHost = System.Configuration.ConfigurationManager.AppSettings["SmtpClientHost"] ?? string.Empty,
2023-04-22 19:35:25 +04:00
SmtpClientPort = Convert.ToInt32(System.Configuration.ConfigurationManager.AppSettings["SmtpClientPort"]),
PopHost = System.Configuration.ConfigurationManager.AppSettings["PopHost"] ?? string.Empty,
PopPort = Convert.ToInt32(System.Configuration.ConfigurationManager.AppSettings["PopPort"])
});
// <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
var timer = new System.Threading.Timer(new TimerCallback(MailCheck!), null, 0, 100000);
}
catch(Exception ex)
{
var logger = _serviceProvider.GetService<ILogger>();
logger?.LogError(ex, "Working with email error");
}
2023-02-13 02:45:41 +04:00
Application.Run(_serviceProvider.GetRequiredService<FormMain>());
2023-01-29 15:36:14 +04:00
}
2023-02-13 02:45:41 +04:00
private static void ConfigureServices(ServiceCollection services)
{
services.AddLogging(option =>
{
option.SetMinimumLevel(LogLevel.Information);
option.AddNLog("nlog.config");
});
services.AddTransient<IMaterialStorage, MaterialStorage>();
services.AddTransient<IOrderStorage, OrderStorage>();
services.AddTransient<IDressStorage, DressStorage>();
2023-04-09 23:35:56 +04:00
services.AddTransient<IClientStorage, ClientStorage>();
2023-04-20 20:20:49 +04:00
services.AddTransient<IEmployeeStorage, EmployeeStorage>();
services.AddTransient<IMessageInfoStorage,MessageInfoStorage>();
2023-02-13 02:45:41 +04:00
services.AddTransient<IMaterialLogic, MaterialLogic>();
services.AddTransient<IOrderLogic, OrderLogic>();
services.AddTransient<IDressLogic, DressLogic>();
services.AddTransient<IReportLogic, ReportLogic>();
2023-04-09 23:35:56 +04:00
services.AddTransient<IClientLogic, ClientLogic>();
2023-04-20 20:20:49 +04:00
services.AddTransient<IEmployeeLogic, EmployeeLogic>();
services.AddTransient<IMessageInfoLogic, MessageInfoLogic>();
2023-04-20 20:20:49 +04:00
services.AddTransient<IWorkImitation, WorkImitation>();
services.AddSingleton<AbstractMailEmployee, MailKitEmployee>();
services.AddTransient<AbstractSaveToExcel, SaveToExcel>();
services.AddTransient<AbstractSaveToWord, SaveToWord>();
services.AddTransient<AbstractSaveToPdf, SaveToPdf>();
2023-02-13 02:45:41 +04:00
services.AddTransient<FormMain>();
services.AddTransient<FormMaterial>();
services.AddTransient<FormMaterials>();
services.AddTransient<FormOrderCreation>();
services.AddTransient<FormDress>();
services.AddTransient<FormDressMaterial>();
services.AddTransient<FormDresses>();
services.AddTransient<FormReportDressMaterials>();
services.AddTransient<FormReportOrders>();
2023-04-09 23:35:56 +04:00
services.AddTransient<FormClients>();
2023-04-20 20:20:49 +04:00
services.AddTransient<FormEmployees>();
services.AddTransient<FormEmployee>();
2023-04-22 19:35:25 +04:00
services.AddTransient<FormEmails>();
2023-02-13 02:45:41 +04:00
}
private static void MailCheck(object obj) => ServiceProvider?.GetService<AbstractMailEmployee>()?.MailCheck();
2023-01-29 15:36:14 +04:00
}
}