diff --git a/NEW/src/JdeScoping.DataAccess/Services/SearchProcessor.cs b/NEW/src/JdeScoping.DataAccess/Services/SearchProcessor.cs index a4d930b..9a07b9c 100644 --- a/NEW/src/JdeScoping.DataAccess/Services/SearchProcessor.cs +++ b/NEW/src/JdeScoping.DataAccess/Services/SearchProcessor.cs @@ -1,5 +1,6 @@ using System.Runtime.CompilerServices; using Dapper; +using JdeScoping.Core.Interfaces; using JdeScoping.DataAccess.Options; using JdeScoping.DataAccess.Interfaces; using JdeScoping.Core.Models.SearchResults; @@ -15,7 +16,7 @@ namespace JdeScoping.DataAccess.Services; /// /// Main search processor service that orchestrates search execution. /// -public sealed class SearchProcessor +public sealed class SearchProcessor : ISearchProcessor { private readonly IDbConnectionFactory _connectionFactory; private readonly ISearchQueryBuilder _queryBuilder;