public function hasRoom(Appointment $appointment, Vacancy $vacancy)
 {
     return $vacancy->hasRoomBetween($appointment->start_at, $appointment->finish_at);
 }