Fix
This commit is contained in:
parent
21274bfbf0
commit
c9c3ccd756
@ -3,7 +3,7 @@ using SecuritySystemBusinessLogic.BusinessLogics;
|
||||
using Microsoft.Extensions.DependencyInjection;
|
||||
using Microsoft.Extensions.Logging;
|
||||
using NLog.Extensions.Logging;
|
||||
using SecuritySystemFileImplement.Implements;
|
||||
using SecuritySystemListImplement.Implements;
|
||||
using SecuritySystemBusinessLogic;
|
||||
using SecuritySystemContracts.BusinessLogicsContracts;
|
||||
using SecuritySystemContracts.StoragesContracts;
|
||||
@ -39,6 +39,7 @@ namespace SecuritySystem
|
||||
services.AddTransient<IComponentStorage, ComponentStorage>();
|
||||
services.AddTransient<IOrderStorage, OrderStorage>();
|
||||
services.AddTransient<ISecureStorage, SecureStorage>();
|
||||
services.AddTransient<FormMain>();
|
||||
services.AddTransient<IComponentLogic, ComponentLogic>();
|
||||
services.AddTransient<IOrderLogic, OrderLogic>();
|
||||
services.AddTransient<ISecureLogic, SecureLogic>();
|
||||
@ -48,6 +49,7 @@ namespace SecuritySystem
|
||||
services.AddTransient<FormSecure>();
|
||||
services.AddTransient<FormSecuriesComponent>();
|
||||
services.AddTransient<FormSecuries>();
|
||||
|
||||
}
|
||||
}
|
||||
}
|
@ -13,8 +13,6 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "SecuritySystemDataModels",
|
||||
EndProject
|
||||
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "SecuritySystemListImplement", "..\SecuritySystemListImplement\SecuritySystemListImplement.csproj", "{A5A3381B-3592-41B6-880F-333C2502DF02}"
|
||||
EndProject
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "SecuritySystemFileImplement", "..\SecuritySystemFileImplement\SecuritySystemFileImplement.csproj", "{88EDB793-0A3D-4B04-BE39-DB9C317ADEE6}"
|
||||
EndProject
|
||||
Global
|
||||
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
||||
Debug|Any CPU = Debug|Any CPU
|
||||
@ -41,10 +39,6 @@ Global
|
||||
{A5A3381B-3592-41B6-880F-333C2502DF02}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||
{A5A3381B-3592-41B6-880F-333C2502DF02}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||
{A5A3381B-3592-41B6-880F-333C2502DF02}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||
{88EDB793-0A3D-4B04-BE39-DB9C317ADEE6}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
||||
{88EDB793-0A3D-4B04-BE39-DB9C317ADEE6}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||
{88EDB793-0A3D-4B04-BE39-DB9C317ADEE6}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||
{88EDB793-0A3D-4B04-BE39-DB9C317ADEE6}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||
EndGlobalSection
|
||||
GlobalSection(SolutionProperties) = preSolution
|
||||
HideSolutionNode = FALSE
|
||||
|
@ -14,7 +14,6 @@
|
||||
</ItemGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<ProjectReference Include="..\SecuritySystemFileImplement\SecuritySystemFileImplement.csproj" />
|
||||
<ProjectReference Include="..\SecuritySystemListImplement\SecuritySystemListImplement.csproj" />
|
||||
<ProjectReference Include="..\SystemSecurityBusinessLogic\SecuritySystemBusinessLogic.csproj" />
|
||||
</ItemGroup>
|
||||
|
@ -6,7 +6,7 @@ using SecuritySystemContracts.ViewModels;
|
||||
|
||||
using SecuritySystemListImplement;
|
||||
|
||||
namespace OrdersShopListImplement.Implements
|
||||
namespace SecuritySystemListImplement.Implements
|
||||
{
|
||||
public class OrderStorage : IOrderStorage
|
||||
{
|
||||
|
Loading…
x
Reference in New Issue
Block a user