/**
  * Creates data provider instance with search query applied
  *
  * @param array $params
  *
  * @return ActiveDataProvider
  */
 public function search($params)
 {
     $query = Productsrelated::find();
     $dataProvider = new ActiveDataProvider(['query' => $query]);
     if (!($this->load($params) && $this->validate())) {
         return $dataProvider;
     }
     $query->andFilterWhere(['ProductsRelatedId' => $this->ProductsRelatedId, 'ProductId' => $this->ProductId, 'RelatedProductId1' => $this->RelatedProductId1, 'RelatedProductId2' => $this->RelatedProductId2, 'RelatedProductId3' => $this->RelatedProductId3, 'created_by' => $this->created_by, 'LastUpdatedBy' => $this->LastUpdatedBy, 'created_at' => $this->created_at, 'updated_at' => $this->updated_at, 'deleted_at' => $this->deleted_at]);
     return $dataProvider;
 }