예제 #1
0
 public CommitCommand(IEventStream eventStream, MainThread mainThread, IRepository repository, ChangesView changes)
 {
     this.eventStream = eventStream;
     this.mainThread  = mainThread;
     this.repository  = repository;
     this.changes     = changes;
 }
예제 #2
0
 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;
 }