Esempio n. 1
0
 public static void AddProperty(this TableTag table, string header, string body)
 {
     table.AddBodyRow(row =>
     {
         row.Header(header);
         row.Cell(body);
     });
 }
Esempio n. 2
0
 public static void AddBodyRow(this TableTag table, params string[] cells)
 {
     table.AddBodyRow(row => cells.Each(c => row.Cell(c)));
 }