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