Presnyakova V.V Lab_2_Hard #12

Closed
Victoria_Presnyakova wants to merge 26 commits from Lab_2_Hard into Lab_1_Hard
2 changed files with 4 additions and 3 deletions
Showing only changes of commit 8ba6501dca - Show all commits

View File

@ -16,6 +16,7 @@
<ItemGroup>
<ProjectReference Include="..\JewelryStoreBusinessLogic\JewelryStoreBusinessLogic.csproj" />
<ProjectReference Include="..\JewelryStoreContracts\JewelryStoreContracts.csproj" />
<ProjectReference Include="..\JewelryStoreFileImplement\JewelryStoreFileImplement.csproj" />
<ProjectReference Include="..\JewelryStoreListImplement\JewelryStoreListImplement.csproj" />
</ItemGroup>

View File

@ -1,7 +1,7 @@
using JewelryStoreContracts.BusinessLogicsContracts;
using JewelryStoreContracts.StoragesContracts;
using JewelryStoreBusinessLogic.BusinessLogics;
using JewelryStoreListImplement.Implements;
using JewelryStoreFileImplement.Implements;
using Microsoft.Extensions.DependencyInjection;
using System.Drawing;
@ -23,8 +23,8 @@ namespace JewelryStore
{
// To customize application configuration such as set high DPI
//settings or default font,
// see https://aka.ms/applicationconfiguration.
ApplicationConfiguration.Initialize();
// see https://aka.ms/applicationconfiguration.
ApplicationConfiguration.Initialize();
var services = new ServiceCollection();
ConfigureServices(services);
_serviceProvider = services.BuildServiceProvider();