ProducerLines
public class EProducerLineDto
{
public string Name { get; set; }
public decimal Quantity { get; set; }
public string UnitType { get; set; }
public decimal Price { get; set; }
public List<TaxDto> Taxes { get; set; }
public decimal GVWithholdingPercent { get; set; }
public decimal GVWithholdingAmount { get; set; }
} public class TaxDto
{
public string TaxCode { get; set; }
public decimal? Total { get; set; }
public decimal? Percent { get; set; }
public string ReasonCode { get; set; }
public string ReasonDesc { get; set; }
}