public async Task<IActionResult> ObterUesPorDre(string dreId)
 {
     var retorno = await consultaDres.ObterEscolasPorDre(dreId);
     if (retorno.Count() > 0)
         return Ok(retorno);
     else return StatusCode(204);
 }
        public async Task <IActionResult> ObterUesPorDre(string dreId)
        {
            var retorno = await consultaDres.ObterEscolasPorDre(dreId);

            if (retorno.Any())
            {
                return(Ok(retorno));
            }
            else
            {
                return(StatusCode(204));
            }
        }