using DigitalData.Core.Abstractions.Application; using DigitalData.Core.Application; using WorkFlow.Application.Contracts; using WorkFlow.Application.DTO.Profile; using WorkFlow.Domain.Entities; using WorkFlow.Infrastructure.Contracts; namespace WorkFlow.Application.Services { public class ProfileService(IProfileRepository repository, AutoMapper.IMapper mapper) : CRUDService(repository, mapper), IProfileService, ICRUDService { } }