refactor: Ersetzt 'ProfileControlsTFRepository' durch 'IProfileControlsTFRepository'.

This commit is contained in:
Developer 02 2024-10-24 15:26:39 +02:00
parent 22f69589c9
commit 6a062045bb

View File

@ -8,7 +8,7 @@ using WorkFlow.Infrastructure.Repositories;
namespace WorkFlow.Application.Services
{
public class ProfileControlsTFService(ProfileControlsTFRepository repository, IMapper mapper)
public class ProfileControlsTFService(IProfileControlsTFRepository repository, IMapper mapper)
: CRUDService<ProfileControlsTFRepository, ProfileControlsTFCreateDto, ProfileControlsTFDto, ProfileControlsTFUpdateDto, ProfileControlsTF, int>(repository, mapper),
IProfileControlsTFService, ICRUDService<ProfileControlsTFCreateDto, ProfileControlsTFDto, ProfileControlsTFUpdateDto, ProfileControlsTF, int>
{