From 495a8ca63ee42677a8cc48a6bced5685f1fe6d78 Mon Sep 17 00:00:00 2001 From: AnnZhimol Date: Tue, 31 Jan 2023 00:02:48 +0400 Subject: [PATCH] =?UTF-8?q?=D0=A4=D0=B8=D0=BD=D0=B0=D0=BB?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../ViewModels/OrderViewModel.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/SoftwareInstallation/SofrwareInstallationContracts/ViewModels/OrderViewModel.cs b/SoftwareInstallation/SofrwareInstallationContracts/ViewModels/OrderViewModel.cs index f1e48d0..cf2378a 100644 --- a/SoftwareInstallation/SofrwareInstallationContracts/ViewModels/OrderViewModel.cs +++ b/SoftwareInstallation/SofrwareInstallationContracts/ViewModels/OrderViewModel.cs @@ -13,6 +13,9 @@ namespace SofrwareInstallationContracts.ViewModels { public int PackageId { get; set; } + [DisplayName("Номер")] + public int Id { get; set; } + [DisplayName("Количество")] public int Count { get; set; } @@ -28,8 +31,5 @@ namespace SofrwareInstallationContracts.ViewModels [DisplayName("Дата выполнения")] public DateTime? DateImplement { get; set; } - [DisplayName("Номер")] - public int Id { get; set; } - } }