Exemple #1
0
 public async Task <Diagnostico> findByIdAsync(long id)
 {
     try {
         return(await diagRepo.GetDiagnosticoAsync(id));
     } catch (Exception) {
         return(null);
     }
 }