private void RemoveGroup(Guid userId, Guid groupId)
 {
     var command = new RemoveGroupMemberCommand(groupId, userId);
     commandBus.Value.Send(Envelope.Create(command));
 }