public async Task <IEnumerable <Client> > GetAllAsync(int page, int pageSize) { try { return(await _repositoryClient.GetAllClientsAsync(page, pageSize)); } catch (Exception) { Notify("Falha ao obter todos os clientes."); } return(null); }