/**
  * Get the controller matching the model.
  *
  * @return string
  */
 public function getController()
 {
     return Arrounded::getController($this);
 }
 /**
  * Get a related class.
  *
  * @param string          $type
  * @param string|string[] $default
  *
  * @return string
  */
 public function getRelatedClass($type, $default)
 {
     return Arrounded::getModelService($this->getClassBasename(), $type, $default);
 }