From 34acfb2701efba1f35241a6beaee89e34ab9d71e Mon Sep 17 00:00:00 2001 From: Nicolae Irimia Date: Fri, 4 Jul 2025 12:01:02 +0300 Subject: [PATCH] bump + parameters --- .../Models/Credentials/DB/IDbClient.cs | 4 ++-- .../Ringhel.Procesio.Action.Core.csproj | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Ringhel.Procesio.Action.Core/Models/Credentials/DB/IDbClient.cs b/Ringhel.Procesio.Action.Core/Models/Credentials/DB/IDbClient.cs index 0aecbc9..4cdbad8 100644 --- a/Ringhel.Procesio.Action.Core/Models/Credentials/DB/IDbClient.cs +++ b/Ringhel.Procesio.Action.Core/Models/Credentials/DB/IDbClient.cs @@ -7,11 +7,11 @@ public interface IDbClient /// /// Execute a query that will return a list /// - Task ExecuteQuery(string dbQuery); + Task ExecuteQuery(string dbQuery, object parameters = null); /// /// Execute a query that will return a list in a specified amount of time /// - Task ExecuteQuery(string dbQuery, int timeout); + Task ExecuteQuery(string dbQuery, int timeout, object parameters = null); /// /// Execute a command that will return an int diff --git a/Ringhel.Procesio.Action.Core/Ringhel.Procesio.Action.Core.csproj b/Ringhel.Procesio.Action.Core/Ringhel.Procesio.Action.Core.csproj index 87602cc..937beb6 100644 --- a/Ringhel.Procesio.Action.Core/Ringhel.Procesio.Action.Core.csproj +++ b/Ringhel.Procesio.Action.Core/Ringhel.Procesio.Action.Core.csproj @@ -8,7 +8,7 @@ Ringhel Procesio https://github.com/PROCESIO/Action-Core.git - 1.37.0 + 1.38.0 Ringhel.Procesio.Action.Core Ringhel.Procesio.Action.Core Ringhel.Procesio.Action.Core