public SpeakersTableViewController()
     : base(UITableViewStyle.Plain)
 {
     var allSessions = (UIApplication.SharedApplication.Delegate as AppDelegate).Sessions;
     Presenter = new SpeakersPresenter(allSessions);
 }
 protected void SetupPresenterAndMocks()
 {
     Presenter = new SpeakersPresenter(null);
 }