From 5cfa2a852f099282aae5751c3f8b9683a08a5bc7 Mon Sep 17 00:00:00 2001 From: Mikhail Trubnikov Date: Thu, 30 Nov 2023 09:24:48 +1000 Subject: [PATCH] =?UTF-8?q?fix(aihit):=20=D0=BF=D0=BE=D0=B4=D0=BA=D0=BB?= =?UTF-8?q?=D1=8E=D1=87=D0=B8=D0=BB=20=D0=B2=20installer=20bll?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- PARR.AIHIT/AIHIT/SyncherInstaller.cs | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/PARR.AIHIT/AIHIT/SyncherInstaller.cs b/PARR.AIHIT/AIHIT/SyncherInstaller.cs index 5c12629b..fa1f93ef 100644 --- a/PARR.AIHIT/AIHIT/SyncherInstaller.cs +++ b/PARR.AIHIT/AIHIT/SyncherInstaller.cs @@ -4,6 +4,7 @@ using Microsoft.Extensions.DependencyInjection; using PARR.AIHIT.Context; using PARR.AIHIT.Services; using PARR.AIHIT.Settings; +using PARR.BLL; using PARR.DAL; using PARR.Mail; @@ -19,17 +20,18 @@ namespace PARR.AIHIT services.InstallMailServices(configuration); services.InstallDalServices(configuration); + services.InstallBllServices(configuration); services.AddDbContext(options => options.UseSqlServer( configuration.GetConnectionString("AihitConnection") - ,sqlServerOptions => sqlServerOptions.CommandTimeout(1800) + , sqlServerOptions => sqlServerOptions.CommandTimeout(1800) )); services.AddAutoMapper(AppDomain.CurrentDomain.GetAssemblies()); services.AddTransient(); - services.AddTransient(); + services.AddTransient();