示例#1
0
 /**
  * Deletes pack by Id
  *
  * @param int $id
  * @return bool
  */
 public function deletePackById($id)
 {
     $this->packDao->deleteById($id);
     return true;
 }