Exemplo n.º 1
0
 public UserInfo Get(string id)
 {
     try
     {
         UserService userService = new UserService();
         return userService.UserInfoGet(int.Parse(id));
     }
     catch (Exception e)
     {
         Logging.WriteToEventLog("USER GET " + e.Message);
         return null;
     }
 }