Guest User

Untitled

a guest
Feb 25th, 2011
352
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.44 KB | None | 0 0
  1. BLL:
  2.  
  3. public int RestoreBackupData(ENT_BackUpClass backup)
  4. {
  5. int ret = 0;
  6.  
  7. try
  8. {
  9. ret = this._dataLayer.RestoreBackupData(backup);
  10. }
  11. catch (Exception ex)
  12. {
  13. // as mentioned the code will stop at this point, is there a way I can fire this back up to my UI?
  14. throw (ex);
  15. }
  16.  
  17. return ret;
  18. }
Advertisement
Add Comment
Please, Sign In to add comment