Создание FurnitureDataBaseImplement

This commit is contained in:
FLARJ 2023-04-06 18:54:48 +04:00
parent 043360ec5c
commit 6cab53dfad
4 changed files with 14 additions and 40 deletions

View File

@ -1,35 +0,0 @@
using FurnitureContracts.BindingModels;
using FurnitureContracts.BusinessLogicsContracts;
using FurnitureContracts.SearchModels;
using FurnitureContracts.ViewModel;
namespace FurnitureBusinessLogic.BusinessLogics
{
public class OrdersLogic : IOrdersLogic
{
public bool Create(OrdersBindingModel model)
{
throw new NotImplementedException();
}
public bool Delete(OrdersBindingModel model)
{
throw new NotImplementedException();
}
public OrdersViewModel? ReadElement(OrderSearchModel model)
{
throw new NotImplementedException();
}
public List<OrdersViewModel>? ReadList(OrderSearchModel? model)
{
throw new NotImplementedException();
}
public bool Update(OrdersBindingModel model)
{
throw new NotImplementedException();
}
}
}

View File

@ -0,0 +1,7 @@
namespace FurnitureDataBaseImplement
{
public class Class1
{
}
}

View File

@ -1,4 +1,4 @@
<Project Sdk="Microsoft.NET.Sdk">
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
@ -6,8 +6,4 @@
<Nullable>enable</Nullable>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\FurnitureContracts\FurnitureContracts.csproj" />
</ItemGroup>
</Project>

View File

@ -9,6 +9,8 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "FurnitureFactoryDataModels"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "FurnitureContracts", "FurnitureContracts\FurnitureContracts.csproj", "{E269E4B8-5EAD-4BB2-A8BA-44FE9D202FB6}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "FurnitureDataBaseImplement", "FurnitureDataBaseImplement\FurnitureDataBaseImplement.csproj", "{1EFC8085-D7CE-40ED-B78D-5176861AB618}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
@ -27,6 +29,10 @@ Global
{E269E4B8-5EAD-4BB2-A8BA-44FE9D202FB6}.Debug|Any CPU.Build.0 = Debug|Any CPU
{E269E4B8-5EAD-4BB2-A8BA-44FE9D202FB6}.Release|Any CPU.ActiveCfg = Release|Any CPU
{E269E4B8-5EAD-4BB2-A8BA-44FE9D202FB6}.Release|Any CPU.Build.0 = Release|Any CPU
{1EFC8085-D7CE-40ED-B78D-5176861AB618}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{1EFC8085-D7CE-40ED-B78D-5176861AB618}.Debug|Any CPU.Build.0 = Debug|Any CPU
{1EFC8085-D7CE-40ED-B78D-5176861AB618}.Release|Any CPU.ActiveCfg = Release|Any CPU
{1EFC8085-D7CE-40ED-B78D-5176861AB618}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE