public ResumeTableCell(string text) { Paragraph = new ResumeParagraph(text); SetDefaults(); }
public ResumeTableCell(ResumeParagraph paragraph) { Paragraph = paragraph; SetDefaults(); }
public ResumeBulletedList AddParagraph(ResumeParagraph resumeParagraph) { Paragraphs.Add(resumeParagraph); return(this); }