public DashboardAutoFetchEditWindow(DashboardAutoFetchState autoFetchState)
 {
     InitializeComponent();
     FetchConfigVM = new AutoFetchConfigVM(autoFetchState);
     DataContext   = FetchConfigVM;
     SetupEditorUC(FetchConfigVM.AutoFetchState_.SchedulerState);
 }
 public AutoFetchConfigVM(DashboardAutoFetchState state)
 {
     AutoFetchState_ = state.Clone();
 }