Вроде работает

This commit is contained in:
Данила Мочалов 2023-02-11 17:41:53 +04:00
parent 75a544e690
commit daf95e27b6
5 changed files with 7 additions and 4 deletions

View File

@ -17,6 +17,7 @@
<ItemGroup>
<ProjectReference Include="..\LawFirmBusinessLogic\LawFirmBusinessLogic.csproj" />
<ProjectReference Include="..\LawFirmContracts\LawFirmContracts.csproj" />
<ProjectReference Include="..\LawFirmFileImplement\LawFirmFileImplement.csproj" />
<ProjectReference Include="..\LawFirmListImplements\LawFirmListImplements.csproj" />
</ItemGroup>

View File

@ -1,7 +1,7 @@
using LawFirmBusinessLogic.BusinessLogics;
using LawFirmContracts.BusinessLogicContracts;
using LawFirmContracts.StorageContracts;
using LawFirmListImplements.Implements;
using LawFirmFileImplement.Implements;
using LawFirmView;
using Microsoft.Extensions.DependencyInjection;
using Microsoft.Extensions.Logging;
@ -41,9 +41,11 @@ namespace LawFirm
services.AddTransient<IBlankStorage, BlankStorage>();
services.AddTransient<IOrderStorage, OrderStorage>();
services.AddTransient<IDocumentStorage, DocumentStorage>();
services.AddTransient<IBlankLogic, BlankLogic>();
services.AddTransient<IOrderLogic, OrderLogic>();
services.AddTransient<IDocumentLogic, DocumentLogic>();
services.AddTransient<FormMain>();
services.AddTransient<FormBlank>();
services.AddTransient<FormBlanks>();

View File

@ -11,7 +11,7 @@ using System.Threading.Tasks;
namespace LawFirmFileImplement.Implements
{
internal class DocumentStorage : IDocumentStorage
public class DocumentStorage : IDocumentStorage
{
private readonly DataFileSingleton source;

View File

@ -11,7 +11,7 @@ using System.Threading.Tasks;
namespace LawFirmFileImplement.Implements
{
internal class OrderStorage : IOrderStorage
public class OrderStorage : IOrderStorage
{
private readonly DataFileSingleton source;

View File

@ -1,4 +1,4 @@
<Project Sdk="Microsoft.NET.Sdk">
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>