/** * Удаление отчетов из базы данных * TODO: Добавить обработку кеша данных * * @param array|int $aIds * @return bool */ public function DeleteEntryByRequestId($aIds) { if (!is_array($aIds)) { $aIds = array($aIds); } return $this->oMapper->DeleteEntryByRequestId($aIds); }
public function GetAllMhb() { return $this->oMapper->GetAllMhb(); }