protected function importInboundDestinationPoints()
 {
     $destination_points = [['city_id' => 398, 'point_id' => 1001], ['city_id' => 1338, 'point_id' => 10010001], ['city_id' => 1500, 'point_id' => 10010002], ['city_id' => 1781, 'point_id' => 10010003], ['city_id' => 1338, 'point_id' => 10010004]];
     foreach ($destination_points as $destination_points) {
         DestinationPoint::insert(['system_id' => 0, 'country_id' => 643, 'city_id' => $destination_points['city_id'], 'point_id' => $destination_points['point_id'], 'currencies' => 'RUR,USD,EUR', 'is_published' => 1, 'direction' => 'inout']);
     }
     return count($destination_points);
 }