示例#1
0
        public PlanDetailResonse GetPlanDetail(string key)
        {
            Condition.Requires(key).IsNotNullOrEmpty();

            return
                (_serviceInvoker.Invoke <PlanDetailResonse>(
                     new InvokeServiceRequest(string.Format(PlanDetailServiceEndPoint, key))));
        }
示例#2
0
 public InfoResponse GetServerInfo()
 {
     return(_serviceInvoker.Invoke <InfoResponse>(new InvokeServiceRequest(InfoServiceEndPoint)));
 }