Ejemplo n.º 1
0
        public BlameFileBinding(IBlameSource blameSource, BlameViewer blameViewer, BlameOptions blameOptions)
        {
            Verify.Argument.IsNotNull(blameSource, nameof(blameSource));
            Verify.Argument.IsNotNull(blameViewer, nameof(blameViewer));
            Verify.Argument.IsNotNull(blameOptions, nameof(blameOptions));

            BlameSource    = blameSource;
            BlameViewer    = blameViewer;
            _blameOptions  = blameOptions;
            _progressPanel = new FlowProgressPanel();

            Progress = _progressPanel.ProgressMonitor;
        }
Ejemplo n.º 2
0
 public BlameViewModel(IBlameSource blameSource)
 {
     BlameSource = blameSource;
 }
Ejemplo n.º 3
0
 public BlameViewModel(IBlameSource blameSource)
 {
     _blameSource = blameSource;
 }