public async Task <IList <Contato> > ListarPorEmpresa(Guid empresaId)
 {
     try
     {
         return(await _repositoryContato.ObterListaPor(x => x.EmpresaId == empresaId));
     }
     catch (Exception ex)
     {
         _logger.LogError("ContatoService.ListarPorEmpresa", ex.Message);
         throw new RecebaFacilException("Erro ao listar contatos");
     }
 }