public SearchView(SortableMemoryListModel <T> model)
        {
            list_view = new ResultListView();
            var controller = new PersistentColumnController("SongKick");

            list_view.ColumnController = controller;
            AddColumns();
            SetDefultSortColumn();
            controller.Load();

            this.model = model;
            this.list_view.SetModel(model);

            window.Child = list_view;
            this.PackStart(window, true, true, 0);
            ShowAll();
        }
 public void SetModel(SortableMemoryListModel <T> model)
 {
     event_model = model;
     event_search_view.SetModel(event_model);
 }
 public void SetModel(SortableMemoryListModel <T> model)
 {
     this.model = model;
     list_view.SetModel(model);
 }