public override MembershipUserCollection FindUsersByEmail(string emailToMatch, int pageIndex, int pageSize, out int totalRecords)
 {
     MembershipUserCollection users = new MembershipUserCollection();
     using (Database db = new MySqlDatabase())
     {
         users = db.FindUsersByEmail(Name, emailToMatch, _applicationName, pageIndex, pageSize, out totalRecords);
     }
     return users;
 }