public async Task <ActionResult <Indicator> > CreateIndicator([FromBody] Indicator indicator)
        {
            try
            {
                Indicator createdIndicator = await _service.CreateIndicator(indicator);

                return(CreatedAtRoute(nameof(GetIndicator), new { id = createdIndicator.Id }, createdIndicator));
            }
            catch (ControllerNotFoundException e)
            {
                return(NotFound(e.Message));
            }
            catch (ControllerBadRequestException e)
            {
                return(BadRequest(e.Message));
            }
        }