示例#1
0
 public PaymentJsonModel VisitChild(ChildPaymentService child)
 {
     return(new PaymentJsonModel
     {
         Name = child.PaymentService.Name,
         Action = child.PaymentService.Action,
         StartRecurrent = new ChurchFalse(),
         TransactionKey = new Just <string>(child.OriginalTransactionKey)
     });
 }
示例#2
0
 public Child(ChildPaymentService childPaymentService)
 {
     this.childPaymentService = childPaymentService;
 }