From b714aa6e46b8ccd9aec978ad13f26cb3c4365f8e Mon Sep 17 00:00:00 2001 From: devil_1nc Date: Sat, 20 May 2023 09:31:11 +0400 Subject: [PATCH] SupplyBindingModel fix --- .../ComputerShopContracts/BindingModels/SupplyBindingModel.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ComputerShopProvider/ComputerShopContracts/BindingModels/SupplyBindingModel.cs b/ComputerShopProvider/ComputerShopContracts/BindingModels/SupplyBindingModel.cs index da1fd14..f1f85d1 100644 --- a/ComputerShopProvider/ComputerShopContracts/BindingModels/SupplyBindingModel.cs +++ b/ComputerShopProvider/ComputerShopContracts/BindingModels/SupplyBindingModel.cs @@ -13,7 +13,7 @@ namespace ComputerShopContracts.BindingModels public int Id { get; set; } public int ClientId { get; set; } - public int ReceivingId { get; set; } + public int? ReceivingId { get; set; } public SupplyStatus Status { get; set; } = SupplyStatus.Неизвестен; public DateTime DateCreate { get; set; } = DateTime.Now;