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