refactor(templateDistributor): добавлены комментарии

This commit is contained in:
Mikhail Kuznetsov
2024-07-25 14:05:00 +10:00
parent 70d96cb88f
commit 7220bdd8af
4 changed files with 78 additions and 72 deletions

View File

@@ -3,6 +3,7 @@ using PARR.EsppApi;
using PARR.DAL;
using PARR.Test;
using Serilog;
using PARR.TemplateDistributor;
IHost host = Host.CreateDefaultBuilder(args)
.ConfigureServices((hostContext, services) =>
@@ -10,6 +11,7 @@ IHost host = Host.CreateDefaultBuilder(args)
services.InstallEsppApiServices(hostContext.Configuration);
services.InstallBllServices(hostContext.Configuration);
services.InstallDalServices(hostContext.Configuration);
services.InstallTemplateDistributorSerivces(hostContext.Configuration);
services.AddHostedService<Worker>();
})