public DrawingsSelectionForm(IDrawingsSelectionController controller)
        {
            InitializeComponent();

            _controller = controller;
            _controller.DataRefreshed += RefreshData;

            repoTechRoutes.DataSource = controller.GetTechRoutes();
        }
 public DrawingsSelectionForm(IDrawingsSelectionController controller, bool multipleSelect)
     : this(controller)
 {
     tlDarwings.OptionsSelection.MultiSelect = multipleSelect;
 }