Guest User

Untitled

a guest
Aug 20th, 2018
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. FooHandler.Update(myUOW);
  2. BarHandler.Update(myUOW);
  3.  
  4. myUOW.Commit();
  5.  
  6. FooHandler.UpdatePayments(myUOW);
  7. BarHandler.UpdatePayments(myUOW);
  8.  
  9. myUOW.Commit(); //Commit payment update
  10.  
  11. FooHandler.UpdateAudit(myUOW);
  12. BarHandler.UpdateAudit(myUOW);
  13.  
  14. myUOW.Commit(); //Commit audit update
  15.  
  16. FooHandler.Update(myPaymentUOW, myAuditUOW);
  17. BarHandler.Update(myPaymentUOW, myAuditUOW);
  18.  
  19. myPaymentUOW.Commit();
  20. myAuditUOW.Commit();
Add Comment
Please, Sign In to add comment