/**
  * Creates data provider instance with search query applied
  *
  * @param array $params
  *
  * @return ActiveDataProvider
  */
 public function search($params)
 {
     $query = Supplierspeople::find();
     $dataProvider = new ActiveDataProvider(['query' => $query]);
     if (!($this->load($params) && $this->validate())) {
         return $dataProvider;
     }
     $query->andFilterWhere(['SuppliersPeopleId' => $this->SuppliersPeopleId, 'UserId' => $this->UserId, 'SupplierId' => $this->SupplierId, 'IsPrimary' => $this->IsPrimary, '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', 'Department', $this->Department])->andFilterWhere(['like', 'Comment', $this->Comment]);
     return $dataProvider;
 }