© 2026 Hedgehog Software, LLC
[HttpGet] public virtual async Task<ActionResult<IEnumerable<TReadDto>>> GetAll( [FromQuery] QueryOptions queryOptions ) { return Ok(await _baseService.GetAll(queryOptions)); }
public class OrderReadDto { public Guid UserId { get; set; } public OrderStatus Status { get; set; } }
[ { "userId": "00000000-0000-0000-0000-000000000000", "status": "Processing" } ]