コード例 #1
0
 public void DisposeUnmanaged()
 {
     tmpBooking               = null;
     OutsideHoursException    = null;
     NoCreditCardException    = null;
     NotEnoughPeopleException = null;
 }
コード例 #2
0
 public void WhenTheyConfirmWithNoCreditCard()
 {
     try
     {
         tmpBooking.ConfirmBooking("");
     }
     catch (NoCreditCardProvidedException ex)
     {
         NoCreditCardException = ex;
     }
 }