переименования проекта-хранилища

This commit is contained in:
kotcheshir73 2021-03-28 11:14:14 +04:00
parent 626759b0c5
commit d7691141c9
6 changed files with 7 additions and 10 deletions

View File

@ -11,7 +11,7 @@ using SecurityBusinessLogic.ViewModels;
using System; using System;
using System.Linq; using System.Linq;
namespace SecurityImplementation.Implementations namespace SecurityImplementation.SecurityDatabaseImplementation
{ {
/// <summary> /// <summary>
/// Реализация IAccessService /// Реализация IAccessService

View File

@ -10,7 +10,7 @@ using SecurityBusinessLogic.ViewModels;
using System; using System;
using System.Linq; using System.Linq;
namespace SecurityImplementation.Implementations namespace SecurityImplementation.SecurityDatabaseImplementation
{ {
/// <summary> /// <summary>
/// Реализация IEnviromentSettingService /// Реализация IEnviromentSettingService

View File

@ -9,7 +9,7 @@ using SecurityBusinessLogic.ViewModels;
using System; using System;
using System.Linq; using System.Linq;
namespace SecurityImplementation.Implementations namespace SecurityImplementation.SecurityDatabaseImplementation
{ {
/// <summary> /// <summary>
/// Реализация IRoleService /// Реализация IRoleService

View File

@ -9,7 +9,7 @@ using SecurityBusinessLogic.ViewModels;
using System; using System;
using System.Linq; using System.Linq;
namespace SecurityImplementation.Implementations namespace SecurityImplementation.SecurityDatabaseImplementation
{ {
/// <summary> /// <summary>
/// Реализация IUserService /// Реализация IUserService

View File

@ -4,12 +4,9 @@
<TargetFramework>net5.0</TargetFramework> <TargetFramework>net5.0</TargetFramework>
</PropertyGroup> </PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<OutputPath></OutputPath>
</PropertyGroup>
<ItemGroup> <ItemGroup>
<ProjectReference Include="..\..\Common\DatabaseCore\DatabaseCore.csproj" /> <ProjectReference Include="..\..\Common\DatabaseCore\DatabaseCore.csproj" />
<ProjectReference Include="..\..\Common\ModelTools\ModelTools.csproj" />
<ProjectReference Include="..\SecurityBusinessLogic\SecurityBusinessLogic.csproj" /> <ProjectReference Include="..\SecurityBusinessLogic\SecurityBusinessLogic.csproj" />
</ItemGroup> </ItemGroup>

View File

@ -2,9 +2,9 @@
using ModelTools.Interfaces; using ModelTools.Interfaces;
using SecurityBusinessLogic.BusinessLogics; using SecurityBusinessLogic.BusinessLogics;
using SecurityBusinessLogic.Interfaces; using SecurityBusinessLogic.Interfaces;
using SecurityImplementation.Implementations; using SecurityImplementation.SecurityDatabaseImplementation;
namespace SecurityImplementation namespace SecurityDatabaseImplementation
{ {
public class SecurityLoaderExtensions : IImplementationExtension public class SecurityLoaderExtensions : IImplementationExtension
{ {