using AutoMapper; using DigitalData.Core.Abstractions.Application; using DigitalData.Core.Application; using WorkFlow.Application.Contracts; using WorkFlow.Application.DTO.State; using WorkFlow.Domain.Entities; using WorkFlow.Application.Contracts.Repositories; namespace WorkFlow.Application.Services; public class StateService : CRUDService, IStateService, ICRUDService { public StateService(IStateRepository repository, IMapper mapper) : base(repository, mapper) { } }