public async Task <ActionResult <Estabelecimento> > PostEstabelecimento(Estabelecimento estabelecimento)
        {
            await _estabelecimentoService.Incluir(estabelecimento);

            return(CreatedAtAction("GetEstabelecimento", new { id = estabelecimento.Id }, estabelecimento));
        }