public Card(string holderName, string number, string expiryMonth, string expiryYear, string securityCode, string issue, Address address, string description) : this(holderName, number, expiryMonth, expiryYear, securityCode, issue, address) { this.Description = description; }
public Card(string holderName, string number, string expiryMonth, string expiryYear, string securityCode, string issue, Address address) { this.HolderName = holderName; this.Number = number; this.ExpiryMonth = expiryMonth; this.ExpiryYear = expiryYear; this.SecurityCode = securityCode; this.Address = address; this.Issue = issue; }