public ActionResult <string> Delete(int id)
        {
            var retorno = _environmentsService.Delete(id);

            if (retorno)
            {
                return(Ok("Deletado com sucesso"));
            }
            else
            {
                return(NoContent());
            }
        }