Ejemplo n.º 1
0
 /**
  * @param int $scheduleId
  * @param int $adminGroupId
  */
 public function ChangeAdminGroup($scheduleId, $adminGroupId)
 {
     $schedule = $this->scheduleRepository->LoadById($scheduleId);
     $schedule->SetAdminGroupId($adminGroupId);
     $this->scheduleRepository->Update($schedule);
 }