public async Task <ActionResult <IList <Endereco> > > Lista()
 {
     try
     {
         return(Ok(await _service.Lista()));
     }
     catch (Exception e)
     {
         throw e;
     }
 }