using AutoMapper; using DigitalData.Core.Abstractions.Application; using DigitalData.Core.Application; using WorkFlow.Application.Contracts; using WorkFlow.Application.DTO.Config; using WorkFlow.Domain.Entities; using WorkFlow.Application.Contracts.Repositories; namespace WorkFlow.Application.Services; public class ConfigService : CRUDService, IConfigService, ICRUDService { public ConfigService(IConfigRepository repository, IMapper mapper) : base(repository, mapper) { } }