public function handle(CreateAlbumCommand $command)
 {
     $this->albumRepository->add(new Album($command->getTitle(), $command->getArtistId()));
 }