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

            return(this);
        }