gladyssann

UserBusinessLayer.cs

Jan 5th, 2018
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. public List<UserEntity> GetAllUsers() {
  2. UsersDataAccess userService = new UsersDataAccess(_key);
  3.  
  4. try
  5. {
  6. return userService.GetAllUsers();
  7. }
  8. catch (Exception eg)
  9. {
  10.  
  11. throw eg;
  12. }
  13. }
Advertisement
Add Comment
Please, Sign In to add comment