drupal 8 \Drupal::service('entity.manager')->getStorage('taxonomy_term') code example
Example: drupal 8 get taxonomy terms by vocabulary name
$terms = \Drupal::entityTypeManager()->getStorage('taxonomy_term')->loadByProperties([
'vid' => 'vocabulary__machine_name'
]);