protected void ToString(List <string> toStringOutput)
 {
     toStringOutput.Add($"Status = {(Status == null ? "null" : Status.ToString())}");
     toStringOutput.Add($"Card = {(Card == null ? "null" : Card.ToString())}");
     toStringOutput.Add($"EntryMethod = {(EntryMethod == null ? "null" : EntryMethod.ToString())}");
 }