на 10 стр остановился
This commit is contained in:
parent
da9d501032
commit
6b04867d07
@ -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
|
||||
|
@ -0,0 +1,9 @@
|
||||
<Project Sdk="Microsoft.NET.Sdk">
|
||||
|
||||
<PropertyGroup>
|
||||
<TargetFramework>net6.0</TargetFramework>
|
||||
<ImplicitUsings>enable</ImplicitUsings>
|
||||
<Nullable>enable</Nullable>
|
||||
</PropertyGroup>
|
||||
|
||||
</Project>
|
12
ComputersShop/ComputersShopDataModels/Enums/OrderStatus.cs
Normal file
12
ComputersShop/ComputersShopDataModels/Enums/OrderStatus.cs
Normal 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
|
||||
{
|
||||
}
|
||||
}
|
12
ComputersShop/ComputersShopDataModels/IId.cs
Normal file
12
ComputersShop/ComputersShopDataModels/IId.cs
Normal 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
|
||||
{
|
||||
}
|
||||
}
|
@ -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
|
||||
{
|
||||
}
|
||||
}
|
12
ComputersShop/ComputersShopDataModels/Models/IOrderModel.cs
Normal file
12
ComputersShop/ComputersShopDataModels/Models/IOrderModel.cs
Normal 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
|
||||
{
|
||||
}
|
||||
}
|
@ -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
|
||||
{
|
||||
}
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user