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); - } -}