/**
  * Get the maximum users for a project.
  * @param $projectid
  * @return int
  */
 public function getMaxUsers($projectid)
 {
     $project = new Project($projectid);
     return $project->getMaxUsers();
 }