/**
  * @param AssignShift $command
  * @return Shift
  */
 public function handle(AssignShift $command)
 {
     $shift = $this->shiftRepository->getOneByIdOrFail($command->shift_id);
     $employee = $this->userRepository->getOneByIdOrFail($command->employee_id);
     $shift->setEmployee($employee);
     return $shift;
 }