Example #1
0
 public ResumeTableCell(string text)
 {
     Paragraph = new ResumeParagraph(text);
     SetDefaults();
 }
Example #2
0
 public ResumeTableCell(ResumeParagraph paragraph)
 {
     Paragraph = paragraph;
     SetDefaults();
 }
Example #3
0
        public ResumeBulletedList AddParagraph(ResumeParagraph resumeParagraph)
        {
            Paragraphs.Add(resumeParagraph);

            return(this);
        }