© 2026 Hedgehog Software, LLC
[HttpPost("addnewguest")] public async Task<ActionResult<string>> AddNewGuest(CreateGuestCommand command) { return await Mediator.Send(command); }
[HttpPost("mergeguests")] public async Task<ActionResult> MergeGuests(MergeGuestsCommand command) { await Mediator.Send(command); return NoContent(); }
public record MergeGuestsCommand : IRequest
public record MergeGuestsCommand : IRequest<Unit>