Exemple #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)
     });
 }
Exemple #2
0
 public Child(ChildPaymentService childPaymentService)
 {
     this.childPaymentService = childPaymentService;
 }