protected override void PopulateTable()
        {
            MWCApp.LogDebug("SPEAKERS PopulateTable");
            if (speakers == null || speakers.Count == 0) {
                titleTextView.Text = "SPEAKERS";
                speakers = MWC.BL.Managers.SpeakerManager.GetSpeakers();

                // create our adapter
                speakerList = new MWC.Adapters.SpeakerListAdapter(this, speakers);

                //Hook up our adapter to our ListView
                speakerListView.Adapter = this.speakerList;
            }
        }
        protected override void PopulateTable()
        {
            MWCApp.LogDebug("SPEAKERS PopulateTable");
            if (speakers == null || speakers.Count == 0)
            {
                titleTextView.Text = "SPEAKERS";
                speakers           = MWC.BL.Managers.SpeakerManager.GetSpeakers();

                // create our adapter
                speakerList = new MWC.Adapters.SpeakerListAdapter(this, speakers);

                //Hook up our adapter to our ListView
                speakerListView.Adapter = this.speakerList;
            }
        }