diff --git a/ComputersShop/ComputersShop.sln b/ComputersShop/ComputersShop.sln index 53cc350..40e6ba9 100644 --- a/ComputersShop/ComputersShop.sln +++ b/ComputersShop/ComputersShop.sln @@ -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 diff --git a/ComputersShop/ComputersShopDataModels/ComputersShopDataModels.csproj b/ComputersShop/ComputersShopDataModels/ComputersShopDataModels.csproj new file mode 100644 index 0000000..132c02c --- /dev/null +++ b/ComputersShop/ComputersShopDataModels/ComputersShopDataModels.csproj @@ -0,0 +1,9 @@ + + + + net6.0 + enable + enable + + + diff --git a/ComputersShop/ComputersShopDataModels/Enums/OrderStatus.cs b/ComputersShop/ComputersShopDataModels/Enums/OrderStatus.cs new file mode 100644 index 0000000..587a4f2 --- /dev/null +++ b/ComputersShop/ComputersShopDataModels/Enums/OrderStatus.cs @@ -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 + { + } +} diff --git a/ComputersShop/ComputersShopDataModels/IId.cs b/ComputersShop/ComputersShopDataModels/IId.cs new file mode 100644 index 0000000..7aa5681 --- /dev/null +++ b/ComputersShop/ComputersShopDataModels/IId.cs @@ -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 + { + } +} diff --git a/ComputersShop/ComputersShopDataModels/Models/IComponentModel.cs b/ComputersShop/ComputersShopDataModels/Models/IComponentModel.cs new file mode 100644 index 0000000..1457099 --- /dev/null +++ b/ComputersShop/ComputersShopDataModels/Models/IComponentModel.cs @@ -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 + { + } +} diff --git a/ComputersShop/ComputersShopDataModels/Models/IOrderModel.cs b/ComputersShop/ComputersShopDataModels/Models/IOrderModel.cs new file mode 100644 index 0000000..809187e --- /dev/null +++ b/ComputersShop/ComputersShopDataModels/Models/IOrderModel.cs @@ -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 + { + } +} diff --git a/ComputersShop/ComputersShopDataModels/Models/IProductModel.cs b/ComputersShop/ComputersShopDataModels/Models/IProductModel.cs new file mode 100644 index 0000000..4756c03 --- /dev/null +++ b/ComputersShop/ComputersShopDataModels/Models/IProductModel.cs @@ -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 + { + } +}