public async Task <Paciente[]> GetAll()
 {
     try
     {
         return(await pacienteRepository.BuscarPacienteAsync());
     }
     catch (Exception)
     {
         throw;
     }
 }