public function actionDelete($id)
 {
     $model = Service::findOne($id);
     $model->delete();
     return $this->redirect(['discount/admin/update', 'id' => $model->parentId, 'section' => 'two']);
 }