コード例 #1
0
ファイル: Proposal.cs プロジェクト: stefanzueger/DoneByMe
 public void When(PricingDenied deniedEvent)
 {
     this.Expectations = Expectations.WithAdjusted(deniedEvent.SuggestedPrice);
     this.Progress     = Progress.DeniedForPricing();
 }
コード例 #2
0
ファイル: Proposal.cs プロジェクト: stefanzueger/DoneByMe
 public void When(SchedulingDenied schedulingDenied)
 {
     this.Expectations = Expectations.WithAdjusted(schedulingDenied.SuggestedCompletionDate);
     this.Progress     = Progress.DeniedForScheduling();
 }