public PageActions(BaseLayer _baseLayer, Preferences _preferences, Model _model)
 {
     InitializeComponent();
     baseLayer = _baseLayer;
     preferences = _preferences;
     model = _model;
     BindElements();
 }
 public PageActions(BaseLayer _baseLayer, Preferences _preferences)
 {
     InitializeComponent();
     baseLayer = _baseLayer;
     preferences = _preferences;
     model = new Model(baseLayer, preferences);
     model.GenerateActions();
     BindElements();
 }
 public PageCombinations(BaseLayer _baseLayer, Preferences _preferences, Model _model)
 {
     InitializeComponent();
     baseLayer = _baseLayer;
     preferences = _preferences;
     model = _model;
     combinationListViewModel = new CombinationListViewModel(baseLayer);
     CombinationListControl.DataContext = combinationListViewModel;
 }