Probably I haven't explained well and also I forgot to mention I need to use nested group ExecuteNestedGroup.
Currently we always have one LineItem but its properties can be an array like (payments) (New property added below).
The Payments property will be a table. Is it still possible without BeginGroup/EndGroup field?
I like to achieve the following with the LineItem class definition.
/// <summary>
/// Class for LineItem TableGroup
/// </summary>
public class LineItem
{
public string Description { get; set; }
public string Quantity { get; set; }
public string UnitAmount { get; set; }
public string TaxPercentageOrName { get; set; }
public string LineAmount { get; set; }
// new property
public List<string> Payments {get; set}
public LineItem(string description, string quantity, string unitAmount, string taxPercentageOrName, string lineAmount)
{
Description = description;
Quantity = quantity;
UnitAmount = unitAmount;
TaxPercentageOrName = taxPercentageOrName;
LineAmount = lineAmount;
}
}
Is it still possible to use