public async Task <List <EmpresaCliente> > Get()
 {
     try
     {
         return(await _empresaClienteAppService.GetAll(cliente => cliente.Ativo == true));
     }
     catch (Exception ex)
     {
         throw new Exception(ex.Message);
     }
 }