Esempio n. 1
0
        public PaymentInstrumentRoot addGroup(CheckoutGroup coGroup, Group groupData)
        {
            if (this.Groups == null)
            {
                this.Groups = new Dictionary <CheckoutGroup, Group>();
            }

            this.Groups.Add(coGroup, groupData);
            return(this);
        }
Esempio n. 2
0
 public EnabledPaymentInstrument WithGroup(CheckoutGroup coGroup)
 {
     this.Group = coGroup.GetCaption();
     return(this);
 }