using DigitalData.Core.API; using Microsoft.AspNetCore.Authorization; using Microsoft.AspNetCore.Mvc; using WorkFlow.Application.Contracts; using WorkFlow.Application.DTO.State; using WorkFlow.Domain.Entities; namespace WorkFlow.API.Controllers { [Route("api/[controller]")] [ApiController] [Authorize] public class StateController(ILogger logger, IStateService service) : CRUDControllerBaseWithErrorHandling(logger, service) { } }