From 7bbb8793f18f8a0e7ccc5686cb08fbb2b298a51f Mon Sep 17 00:00:00 2001 From: Yunusov_Niyaz Date: Sun, 26 May 2024 23:03:24 +0400 Subject: [PATCH] =?UTF-8?q?=D0=93=D0=BE=D1=82=D0=BE=D0=B2=D0=BE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../VeterinaryDatabaseImplement/Implements/PetStorage.cs | 1 - 1 file changed, 1 deletion(-) diff --git a/VeterinaryView/VeterinaryDatabaseImplement/Implements/PetStorage.cs b/VeterinaryView/VeterinaryDatabaseImplement/Implements/PetStorage.cs index bc76a54..6a86763 100644 --- a/VeterinaryView/VeterinaryDatabaseImplement/Implements/PetStorage.cs +++ b/VeterinaryView/VeterinaryDatabaseImplement/Implements/PetStorage.cs @@ -49,7 +49,6 @@ namespace VeterinaryDatabaseImplement.Implements using var context = new VeterinaryDatabase(); return context.Pets .Where(pet => model.petsIds == null || model.petsIds.Contains(pet.Id)) - .Include() .Select(pet => new ReportServicesViewModel() { PetName = pet.PetName,