Beispiel #1
0
 public async Task <Provider> GetByIdAsync(Guid id)
 {
     try
     {
         return(await _repositoryProvider.GetProviderByIdAsync(id));
     }
     catch (Exception)
     {
         Notify("Falha ao obter o fornecedor por id.");
     }
     return(null);
 }