Guest User

Untitled

a guest
Jul 15th, 2018
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.41 KB | None | 0 0
  1. [Test]
  2. [ExpectedException(typeof(NotFoundException))]
  3. public void DeleteAttendee() {
  4.  
  5. using(TransactionScope scope = new TransactionScope()) {
  6. Attendee anAttendee = Attendee.Get(3);
  7. anAttendee.Delete();
  8. anAttendee.Save();
  9.  
  10. //Try reloading. Instance should have been deleted.
  11. Attendee deletedAttendee = Attendee.Get(3);
  12. }
  13. }
  14.  
  15. User
Add Comment
Please, Sign In to add comment