Example #1
0
 public GoldenCardResponseHandler(GoldenCard parent)
     : this(parent, parent)
 {
 }
Example #2
0
 private GoldenCard(GoldenCard prototype) : base(prototype.Type, prototype.Discount)
 {
 }
Example #3
0
 public GoldenCardResponseHandler(GoldenCard parent, Card card)
     : base(RequestType.GoldenCard, card.Owner)
 {
     this.parent = parent;
     this.card = card;
 }