/**
  * Gets all of the current project in total.
  * @param $projectid
  * @return int
  */
 public function getCurrentUsers($projectid)
 {
     //        throw new Exception();
     $project = new Project($projectid);
     return $project->getCurrentUsers();
 }