コード例 #1
0
 public TransactionServiceBaseModel(TransactionServiceBaseModel baseModel)
 {
     this.service = baseModel.service;
     this.version = baseModel.version;
     this.biz_id = baseModel.biz_id;
     this.sign_type = baseModel.sign_type;
     this.sign = baseModel.sign;
     this.call_time = baseModel.call_time;
     this.return_url = baseModel.return_url;
     this.notify_url = baseModel.notify_url;
 }
コード例 #2
0
 public IDictionary<string, string> GetDictionary()
 {
     TransactionServiceBaseModel baseModel = new TransactionServiceBaseModel(this);
     IDictionary<string, string> baseDictionary = baseModel.ToDictionary();
     IDictionary<string, string> dictionary = this.ToDictionary();
     foreach (var item in baseDictionary)
     {
         dictionary.Add(item.Key, item.Value);
     }
     return dictionary;
 }