public HotfixesViewModel(IGitFlowSection te)
            : base(te)
        {
            PublishHotfixBranchCommand = new RelayCommand(p => PublishHotfixBranch(), p => CanPublishHotfixBranch);
            TrackHotfixBranchCommand   = new RelayCommand(p => TrackHotfixBranch(), p => CanTrackHotfixBranch);

            HideProgressBar();
        }
Example #2
0
        public InitModel(IGitFlowSection parent)
            :base(parent)
        {
            InitializeModel();

            OkCommand = new RelayCommand(p => OnInitialize(), p => true);
            CancelCommand = new RelayCommand(p=> OnCancel(), p => true);
            OnShowInitCommand = new RelayCommand(p => OnShowInit(), p => true);
        }
        public FeaturesViewModel(IGitFlowSection te)
            : base(te)
        {
            PublishFeatureBranchCommand  = new RelayCommand(p => PublishFeatureBranch(), p => CanPublishFeatureBranch);
            TrackFeatureBranchCommand    = new RelayCommand(p => TrackFeatureBranch(), p => CanTrackFeatureBranch);
            CheckoutFeatureBranchCommand = new RelayCommand(p => CheckoutFeatureBranch(), p => CanCheckoutFeatureBranch);

            HideProgressBar();
        }
Example #4
0
        public InitModel(IGitFlowSection parent)
            : base(parent)
        {
            InitializeModel();

            OkCommand         = new RelayCommand(p => OnInitialize(), p => true);
            CancelCommand     = new RelayCommand(p => OnCancel(), p => true);
            OnShowInitCommand = new RelayCommand(p => OnShowInit(), p => true);
        }
Example #5
0
        public FeaturesViewModel(IGitFlowSection te)
            : base(te)
        {
            PublishFeatureBranchCommand = new RelayCommand(p => PublishFeatureBranch(), p => CanPublishFeatureBranch);
            TrackFeatureBranchCommand = new RelayCommand(p => TrackFeatureBranch(), p => CanTrackFeatureBranch);
            CheckoutFeatureBranchCommand = new RelayCommand(p => CheckoutFeatureBranch(), p => CanCheckoutFeatureBranch);

            HideProgressBar();
        }
Example #6
0
 public ReleasesViewModel(IGitFlowSection te)
     : base(te)
 {
     PublishReleaseBranchCommand = new RelayCommand(p => PublishReleaseBranch(), p => CanPublishReleaseBranch);
     HideProgressBar();
 }
Example #7
0
 public ViewModelBase(IGitFlowSection te)
 {
     Te = te;
 }
Example #8
0
 public SupportsViewModel(IGitFlowSection te)
     : base(te)
 {
     HideProgressBar();
 }
Example #9
0
 public ViewModelBase(IGitFlowSection te)
 {
     Te = te;
 }