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