Exemplo n.º 1
0
        private void OnCreateBranch(object sender, BranchCreateArgs e)
        {
            HideCreateBranchView();

            try
            {
                this.Provider.CreateBranch(e.BranchName);
            }
            catch (SourceControlException ex)
            {
                RaiseActionFailedEvent(ex);
            }

            RefreshView();
        }
Exemplo n.º 2
0
        private void OnCreateBranch(object sender, BranchCreateArgs e)
        {
            HideCreateBranchView();

            try
            {
                this.Provider.CreateBranch(e.BranchName);
            }
            catch (SourceControlException ex)
            {
                RaiseActionFailedEvent(ex);
            }            
            
            RefreshView();
        }