public HistoryUploadResponse PointCard_HistoryUpload(HistoryUploadRequest req)
        {
            HistoryUploadResponse ret = null;

            try
            {
                HistoryUploadClass item = new HistoryUploadClass(httpClient)
                {
                    Req = req
                };
                item.Communication();
                ret = (HistoryUploadResponse)item.Res;
            }
            catch
            {
                throw;
            }

            return(ret);
        }
 // コンストラクタ
 public HistoryUploadClass(HttpClient client) : base(client)
 {
     URL = Op.WPRestAPI.URL_BaseURL + Op.WPRestAPI.URL_HistoryUpload;
     Req = new HistoryUploadRequest();
     Res = new HistoryUploadResponse();
 }