public async Task <IActionResult> Get(int id)
        {
            try
            {
                if (string.IsNullOrEmpty(Convert.ToString(id)))
                {
                    return(BadRequest(ModelState));
                }

                var cliente = await _clienteBusiness.FindById(id);

                if (cliente == null)
                {
                    return(NotFound("Cliente removido ou nao existente na base de dados."));
                }

                return(Ok(cliente));
            }
            catch (Exception ex)
            {
                return(BadRequest($"{ex.Message} - {ex.InnerException}"));
            }
        }