From 3f924b75b092e489dfc1b2d62456c8e5c8fba70b Mon Sep 17 00:00:00 2001 From: TekH Date: Sat, 11 Jul 2026 16:45:15 +0200 Subject: [PATCH] chore(application): remove old ISQLExecutor interface location - Delete ECMJobRunner.Application/Common/Interfaces/ISQLExecutor.cs - Interface moved to ECMJobRunner.Domain/Interfaces/ (committed in 26ea1db) --- .../Common/Interfaces/ISQLExecutor.cs | 20 ------------------- 1 file changed, 20 deletions(-) delete mode 100644 ECMJobRunner.Application/Common/Interfaces/ISQLExecutor.cs diff --git a/ECMJobRunner.Application/Common/Interfaces/ISQLExecutor.cs b/ECMJobRunner.Application/Common/Interfaces/ISQLExecutor.cs deleted file mode 100644 index d14b0e8..0000000 --- a/ECMJobRunner.Application/Common/Interfaces/ISQLExecutor.cs +++ /dev/null @@ -1,20 +0,0 @@ -using System.Threading; -using System.Threading.Tasks; - -namespace ECMJobRunner.Application.Common.Interfaces -{ - /// - /// Interface for executing SQL queries and mapping results to DTOs - /// - public interface ISQLExecutor - { - /// - /// Executes a SQL query and maps the result to the specified type - /// - /// The type to map the query result to - /// The SQL query to execute - /// Cancellation token - /// The mapped result or null if no result - Task ExecuteQueryAsync(string sql, CancellationToken cancellationToken = default); - } -}