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 : CRUDService, IProfileService, ICRUDService { public ProfileService(IProfileRepository repository, AutoMapper.IMapper mapper) : base(repository, mapper) { } }