/// <summary> /// for Aggregate use only /// </summary> protected internal virtual void WithdrawNow(IDependencies deps) { if (IsTendered) { deps.Instance <_WithdrawNow>() .WithdrawNow(this); } }
/// <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); }