Zetbox.Client.Presentables.ObjectEditor.WorkspaceViewModel.CreateCommands C# (CSharp) Method

CreateCommands() protected method

protected CreateCommands ( ) : ObservableCollection
return ObservableCollection
        protected override ObservableCollection<ICommandViewModel> CreateCommands()
        {
            var result = base.CreateCommands();

            result.Add(SaveAndCloseCommand);
            result.Add(SaveCommand);
            result.Add(VerifyCommand);
            result.Add(DeleteCommand);
            result.Add(AbortCommand);

            return result;
        }