From f300b640a2b5df229a108127c1a4e879324c6c3a Mon Sep 17 00:00:00 2001 From: Developer 02 Date: Thu, 24 Oct 2024 15:27:10 +0200 Subject: [PATCH] refactor: Ersetzt 'ProfileControlsTFRepository' durch 'IProfileControlsTFRepository'. --- WorkFlow.Application/Services/ProfileControlsTFService.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/WorkFlow.Application/Services/ProfileControlsTFService.cs b/WorkFlow.Application/Services/ProfileControlsTFService.cs index c2633db..c853817 100644 --- a/WorkFlow.Application/Services/ProfileControlsTFService.cs +++ b/WorkFlow.Application/Services/ProfileControlsTFService.cs @@ -4,12 +4,12 @@ using DigitalData.Core.Application; using WorkFlow.Application.Contracts; using WorkFlow.Application.DTO.ProfileControlsTF; using WorkFlow.Domain.Entities; -using WorkFlow.Infrastructure.Repositories; +using WorkFlow.Infrastructure.Contracts; namespace WorkFlow.Application.Services { public class ProfileControlsTFService(IProfileControlsTFRepository repository, IMapper mapper) - : CRUDService(repository, mapper), + : CRUDService(repository, mapper), IProfileControlsTFService, ICRUDService { }