private IEnumerable <string> PromptNotesOptions()
        {
            try
            {
                var  wnd    = new BuildNotesOptionWnd();
                bool?action = wnd.ShowDialog();
                if (action.HasValue && action.Value)
                {
                    return(wnd.Option);
                }
            }
            catch (Exception ex)
            {
                this.view.DisplayError(ex);
            }

            return(null);
        }
Exemplo n.º 2
0
        private IEnumerable<string> PromptNotesOptions()
        {
            try
            {
                var wnd = new BuildNotesOptionWnd();
                bool? action = wnd.ShowDialog();
                if (action.HasValue && action.Value)
                {
                    return wnd.Option;
                }
            }
            catch (Exception ex)
            {
                this.view.DisplayError(ex);
            }

            return null;
        }