protected void Copy_OnClick(object sender, EventArgs e)
        {
            if (IsChecked())
            {
                AttendRegistrationEngine.CopyParticipantsRemove(CurrentData);
            }
            else
            {
                AttendRegistrationEngine.CopyParticipants(CurrentData);
            }

            Copy.DataBind();
        }