Exemple #1
0
 public CardControl(string id, string content, string color, CardTypeControl cardTypeControl)
     : this(id, cardTypeControl)
 {
     _Content = content;
     _Color   = color;
 }
Exemple #2
0
 public CardControl(string id, CardTypeControl cardTypeControl)
 {
     _Id = id;
     _CardTypeControl = cardTypeControl;
 }