diff --git a/JewelryStore/JewelryStore.csproj b/JewelryStore/JewelryStore.csproj index 90bafab..e6930e9 100644 --- a/JewelryStore/JewelryStore.csproj +++ b/JewelryStore/JewelryStore.csproj @@ -16,6 +16,7 @@ + diff --git a/JewelryStore/Program.cs b/JewelryStore/Program.cs index 4a4a47e..df72a59 100644 --- a/JewelryStore/Program.cs +++ b/JewelryStore/Program.cs @@ -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();