на 10 стр остановился

This commit is contained in:
frog24 2024-02-09 05:23:11 +04:00
parent da9d501032
commit 6b04867d07
7 changed files with 76 additions and 1 deletions

View File

@ -3,7 +3,9 @@ Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio Version 17
VisualStudioVersion = 17.5.33627.172
MinimumVisualStudioVersion = 10.0.40219.1
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ComputersShop", "ComputersShop\ComputersShop.csproj", "{C3280008-18FB-4481-B3A7-6C8534EDC65C}"
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ComputersShop", "ComputersShop\ComputersShop.csproj", "{C3280008-18FB-4481-B3A7-6C8534EDC65C}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ComputersShopDataModels", "ComputersShopDataModels\ComputersShopDataModels.csproj", "{34C63637-6E52-4576-99D5-DA7524F73EA0}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
@ -15,6 +17,10 @@ Global
{C3280008-18FB-4481-B3A7-6C8534EDC65C}.Debug|Any CPU.Build.0 = Debug|Any CPU
{C3280008-18FB-4481-B3A7-6C8534EDC65C}.Release|Any CPU.ActiveCfg = Release|Any CPU
{C3280008-18FB-4481-B3A7-6C8534EDC65C}.Release|Any CPU.Build.0 = Release|Any CPU
{34C63637-6E52-4576-99D5-DA7524F73EA0}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{34C63637-6E52-4576-99D5-DA7524F73EA0}.Debug|Any CPU.Build.0 = Debug|Any CPU
{34C63637-6E52-4576-99D5-DA7524F73EA0}.Release|Any CPU.ActiveCfg = Release|Any CPU
{34C63637-6E52-4576-99D5-DA7524F73EA0}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE

View File

@ -0,0 +1,9 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
</Project>

View File

@ -0,0 +1,12 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ComputersShopDataModels.Enums
{
internal class OrderStatus
{
}
}

View File

@ -0,0 +1,12 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ComputersShopDataModels
{
internal class Iid
{
}
}

View File

@ -0,0 +1,12 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ComputersShopDataModels.Models
{
internal interface IComponentModel
{
}
}

View File

@ -0,0 +1,12 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ComputersShopDataModels.Models
{
internal interface IOrderModel
{
}
}

View File

@ -0,0 +1,12 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ComputersShopDataModels.Models
{
internal interface IProductModel
{
}
}