/**
  * @param int $memberId
  */
 public function setMember($memberId)
 {
     $this->memberId = $memberId;
     $this->memberBoxes = $this->storageBoxRepository->getMemberBoxes($this->memberId);
     $this->boxPayments = $this->paymentRepository->getStorageBoxPayments($this->memberId);
 }