private void RetrievePendingUserRegistrations()
 {
     if (!IsViewDataLoaded)
     {
         //We need the InfercurrentShowCommand call here. When page change occurs,
         //we need to know if we need to retrieve all pending email verifications or not.
         //IsPostback won't help - the ObjectContainerDataSource_Selecting is called twice and the second time, it says 'IsPostBack = false'
         ViewData         = RegisterUserBLL.GetPendingUserRegistrationsForApprover(this.AccountInfo, IncludeAllPendingEmailVerifications);
         IsViewDataLoaded = true;
     }
 }