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