/**
  * Handle the command.
  *
  * @param  CreateFasciaCommand  $command
  * @return void
  */
 public function handle(CreateFasciaCommand $command)
 {
     $fascia_object = Fascie::make($command->nome);
     $fascia = $this->repo->save($fascia_object);
     Event::fire(new FasciaWasCreated($fascia));
     return $fascia;
 }