public List<Group> findGroupsByUserAndGroupType(String userId, String groupType) {
return commandService.execute(new FindGroupsCmd(userId, groupType));
}
public void deleteGroup(String groupId) {
commandService.execute(new DeleteGroupCmd(groupId));
}