public function handle(DeleteAlbumCommand $command)
 {
     $album = $this->albumRepository->ofId($command->getAlbumId());
     $this->albumRepository->remove($album);
 }