Example #1
0
 public static UserModel Get(int userId)
 {
     try {
         var repo = new UserRepository();
         return repo.Get(userId);
     } catch (Exception ex) {
         throw ex;
     }
 }