/**
  * Get the amount of users currently on group. Withouth removed.
  *
  * @param $projectid
  * @param $group
  * @return int
  */
 public function getCurrentUsersForGroup($projectid, $group)
 {
     //        throw new Exception();
     $project = new Project($projectid);
     return $project->getCurrentUsersForGroup($group);
 }