From 7f7cbd26af06e1412f6f299aa47e343b61e2a0cc Mon Sep 17 00:00:00 2001 From: Ivan Gutorov Date: Sun, 16 Feb 2025 21:24:21 +0400 Subject: [PATCH] fix var name --- .../StoragesContracts/IInstallationStorageContract.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/TheCyclopsProject/TheCyclopsContracts/StoragesContracts/IInstallationStorageContract.cs b/TheCyclopsProject/TheCyclopsContracts/StoragesContracts/IInstallationStorageContract.cs index 041ee26..4150ef8 100644 --- a/TheCyclopsProject/TheCyclopsContracts/StoragesContracts/IInstallationStorageContract.cs +++ b/TheCyclopsProject/TheCyclopsContracts/StoragesContracts/IInstallationStorageContract.cs @@ -5,7 +5,7 @@ namespace TheCyclopsContracts.StoragesContracts; public interface IInstallationStorageContract { List GetList(DateTime? startDate = null, DateTime? endDate = null, - string? employeeId = null, string? productId = null); + string? employeeId = null, string? componentId = null); InstallationDataModel? GetElementById(string id);