Beispiel #1
0
 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);
 }