Example #1
0
 /**
  * Retrieve region collection
  *
  * @return \Magento\Directory\Model\ResourceModel\Region\Collection
  */
 public function getRegionCollection()
 {
     if (!$this->_regionCollection) {
         $this->_regionCollection = $this->_regCollectionFactory->create();
         $this->_regionCollection->addCountryFilter($this->getAddress()->getCountryId())->load();
     }
     return $this->_regionCollection;
 }