Ejemplo n.º 1
0
        public GitVM(EditorVM EditorVM)
        {
            WindowService           = EditorVM.WindowService;
            OpenGitSetupCommand     = new DelegateCommand(OpenGitSetup);
            CommitRepositoryCommand = new DelegateCommand(CommitRepositorySolo);
            PushRepositoryCommand   = new DelegateCommand(PushRepository);
            PullRepositoryCommand   = new DelegateCommand(PullRepository);

            SaveVM.OnSaved += ProcessRepositoryOnSave;
        }
Ejemplo n.º 2
0
 public AsyncVM(EditorVM editorVM)
 {
     EditorVM = editorVM;
     IsConverterProcessing = false;
     SelectedFileRaw       = Constants.NO_FILE_SELECTED;
 }