diff --git a/PARR.API.sln b/PARR.API.sln index b8a6d906..09641c6a 100644 --- a/PARR.API.sln +++ b/PARR.API.sln @@ -17,6 +17,7 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution ProjectSection(SolutionItems) = preProject .gitlab-ci.yml = .gitlab-ci.yml NuGet.config = NuGet.config + README.md = README.md EndProjectSection EndProject Project("{E53339B2-1760-4266-BCC7-CA923CBCF16C}") = "docker-compose", "docker-compose.dcproj", "{AB278172-BFB4-4D54-9022-2D2A5B3338D7}" diff --git a/PARR.API/PARR.API.csproj b/PARR.API/PARR.API.csproj index 57fcfc78..6ace2662 100644 --- a/PARR.API/PARR.API.csproj +++ b/PARR.API/PARR.API.csproj @@ -38,8 +38,4 @@ - - - - diff --git a/PARR.API/Program.cs b/PARR.API/Program.cs index fc6a3509..37d07585 100644 --- a/PARR.API/Program.cs +++ b/PARR.API/Program.cs @@ -1,5 +1,6 @@ using FluentValidation; using PARR.API.Installers; +using PARR.BLL; using PARR.DAL; using Serilog; using System.Reflection; @@ -15,6 +16,7 @@ builder.Host.UseSerilog((context, config) => // Add services to the container. builder.Services.InstallDalServices(builder.Configuration); +builder.Services.InstallBllServices(builder.Configuration); builder.Services.InstallApiServices(builder.Configuration); builder.Services.InstallSettings(builder.Configuration); builder.Services.AddAutoMapper(AppDomain.CurrentDomain.GetAssemblies());