Beispiel #1
0
 /// <summary>
 /// for Aggregate use only
 /// </summary>
 protected internal virtual void WithdrawNow(IDependencies deps)
 {
     if (IsTendered)
     {
         deps.Instance <_WithdrawNow>()
         .WithdrawNow(this);
     }
 }
Beispiel #2
0
 /// <summary>
 /// Withdraw a bid that was tendered.  The bidder is no longer
 /// willing to provide the services with these terms.
 /// This operation is idempotent, and does not throw if the
 /// bid has already been withdrawn.
 /// </summary>
 public void WithdrawNow(IDependencies deps)
 {
     deps.Instance <_WithdrawNow>()
     .WithdrawNow(this);
 }