/// <summary>
 /// 匹配对手
 /// </summary>
 /// <param name="id">用户id</param>
 /// <returns></returns>
 public User GetMatch(String id)
 {
     return(Service.Match(id));
     //return new User { Id = Guid.NewGuid(), Score = 250 };
 }