public async Task <IActionResult> Put(int id, [FromBody] UpdatePanel model)
        {
            var entity = model.MapEntity(model);

            entity.Id = id;

            var createdResult = await _panelService.UpdatePanelAsync(entity);

            return(ApiResponse.FromServiceResult(createdResult));
        }