Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,11 @@ public interface IDbClient
/// <summary>
/// Execute a query that will return a list
/// </summary>
Task<DataSet> ExecuteQuery(string dbQuery);
Task<DataSet> ExecuteQuery(string dbQuery, object parameters = null);
/// <summary>
/// Execute a query that will return a list in a specified amount of time
/// </summary>
Task<DataSet> ExecuteQuery(string dbQuery, int timeout);
Task<DataSet> ExecuteQuery(string dbQuery, int timeout, object parameters = null);

/// <summary>
/// Execute a command that will return an int
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<Company>Ringhel</Company>
<Product>Procesio</Product>
<RepositoryUrl>https://github.com/PROCESIO/Action-Core.git</RepositoryUrl>
<Version>1.37.0</Version>
<Version>1.38.0</Version>
<AssemblyName>Ringhel.Procesio.Action.Core</AssemblyName>
<PackageId>Ringhel.Procesio.Action.Core</PackageId>
<RootNamespace>Ringhel.Procesio.Action.Core</RootNamespace>
Expand Down
Loading