From 10bf17700aa13c669e86c23bc209a391de9878a2 Mon Sep 17 00:00:00 2001 From: "leonteva.v" Date: Mon, 25 Mar 2024 11:55:12 +0400 Subject: [PATCH] =?UTF-8?q?=D0=BD=D0=B0=D1=87=D0=B0=D0=BB=D0=BE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Typography/Typography.sln | 8 +++++++- .../{Typography.csproj => TypographyView.csproj} | 0 .../TypographyDataModels/Enums/OrderStatus.cs | 11 +++++++++++ Typography/TypographyDataModels/IId.cs | 7 +++++++ .../TypographyDataModels.csproj | 13 +++++++++++++ 5 files changed, 38 insertions(+), 1 deletion(-) rename Typography/Typography/{Typography.csproj => TypographyView.csproj} (100%) create mode 100644 Typography/TypographyDataModels/Enums/OrderStatus.cs create mode 100644 Typography/TypographyDataModels/IId.cs create mode 100644 Typography/TypographyDataModels/TypographyDataModels.csproj diff --git a/Typography/Typography.sln b/Typography/Typography.sln index 7d70ae9..b1ad27b 100644 --- a/Typography/Typography.sln +++ b/Typography/Typography.sln @@ -3,7 +3,9 @@ Microsoft Visual Studio Solution File, Format Version 12.00 # Visual Studio Version 17 VisualStudioVersion = 17.7.34221.43 MinimumVisualStudioVersion = 10.0.40219.1 -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Typography", "Typography\Typography.csproj", "{4EE7D689-E2F4-435E-A27C-11BD117622E2}" +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "TypographyView", "Typography\TypographyView.csproj", "{4EE7D689-E2F4-435E-A27C-11BD117622E2}" +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "TypographyDataModels", "TypographyDataModels\TypographyDataModels.csproj", "{26341B8F-7525-47AC-80FE-247A6E80B0FC}" EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution @@ -15,6 +17,10 @@ Global {4EE7D689-E2F4-435E-A27C-11BD117622E2}.Debug|Any CPU.Build.0 = Debug|Any CPU {4EE7D689-E2F4-435E-A27C-11BD117622E2}.Release|Any CPU.ActiveCfg = Release|Any CPU {4EE7D689-E2F4-435E-A27C-11BD117622E2}.Release|Any CPU.Build.0 = Release|Any CPU + {26341B8F-7525-47AC-80FE-247A6E80B0FC}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {26341B8F-7525-47AC-80FE-247A6E80B0FC}.Debug|Any CPU.Build.0 = Debug|Any CPU + {26341B8F-7525-47AC-80FE-247A6E80B0FC}.Release|Any CPU.ActiveCfg = Release|Any CPU + {26341B8F-7525-47AC-80FE-247A6E80B0FC}.Release|Any CPU.Build.0 = Release|Any CPU EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE diff --git a/Typography/Typography/Typography.csproj b/Typography/Typography/TypographyView.csproj similarity index 100% rename from Typography/Typography/Typography.csproj rename to Typography/Typography/TypographyView.csproj diff --git a/Typography/TypographyDataModels/Enums/OrderStatus.cs b/Typography/TypographyDataModels/Enums/OrderStatus.cs new file mode 100644 index 0000000..f889e57 --- /dev/null +++ b/Typography/TypographyDataModels/Enums/OrderStatus.cs @@ -0,0 +1,11 @@ +namespace TypographyDataModels.Enums +{ + public enum OrderStatus + { + Неизвестен = -1, + Принят = 0, + Выполняется = 1, + Готов = 2, + Выдан = 3 + } +} \ No newline at end of file diff --git a/Typography/TypographyDataModels/IId.cs b/Typography/TypographyDataModels/IId.cs new file mode 100644 index 0000000..40695b7 --- /dev/null +++ b/Typography/TypographyDataModels/IId.cs @@ -0,0 +1,7 @@ +namespace TypographyDataModels +{ + public interface IId + { + int Id { get; } + } +} \ No newline at end of file diff --git a/Typography/TypographyDataModels/TypographyDataModels.csproj b/Typography/TypographyDataModels/TypographyDataModels.csproj new file mode 100644 index 0000000..c68ed43 --- /dev/null +++ b/Typography/TypographyDataModels/TypographyDataModels.csproj @@ -0,0 +1,13 @@ + + + + net6.0 + enable + enable + + + + + + +