コード例 #1
0
ファイル: CommitCommand.cs プロジェクト: gitter-badger/guit
 public CommitCommand(IEventStream eventStream, MainThread mainThread, IRepository repository, ChangesView changes)
 {
     this.eventStream = eventStream;
     this.mainThread  = mainThread;
     this.repository  = repository;
     this.changes     = changes;
 }
コード例 #2
0
ファイル: RevertCommand.cs プロジェクト: gitter-badger/guit
 public RevertCommand(MainThread mainThread, IRepository repository, ChangesView changes)
 {
     this.mainThread = mainThread;
     this.repository = repository;
     this.changes    = changes;
 }
コード例 #3
0
 public AmendCommitCommand(IEventStream eventStream, MainThread mainThread, IRepository repository, ChangesView changes)
     : base(eventStream, mainThread, repository, changes)
 {
     Amend = true;
 }