/**
  * Removes a dashboard from the model
  * @param Dashboard $dashboard
  * @return null
  */
 public function removeDashboard(Dashboard $dashboard)
 {
     $this->cache->clear(self::CACHE_TYPE, $dashboard->getName());
 }