Eledger Properties
public class ELedgerPropertiesDto
{
public string Nace { get; set; }
public string Creator { get; set; }
public string CurrencyCode { get; set; }
public TaxType TaxType { get; set; }
public int LineCount { get; set; } = 15000;
public bool IsBranch { get; set; } = false;
public string BranchName { get; set; }
public string BranchNumber { get; set; } = "0000";
public bool LedgerPeriod { get; set; }
public DateTime FiscalYearStart { get; set; }
public DateTime FiscalYearEnd { get; set; }
public AccountingPeriod AccountingPeriod { get; set; }
public bool IsLiquidate { get; set; }
public bool BalanceControl { get; set; } = true;
public bool PaymentMethodControl { get; set; } = true;
public DateTime? LiquidateYearStart { get; set; }
public SignMethod SignMethod { get; set; }
public bool SplitBillControl { get; set; }
public bool DocumentNumberControl { get; set; }
public bool AutoNumberControl { get; set; }
public bool DateDifferenceValidControl { get; set; }
public bool OpeningVoucherControl { get; set; }
public bool AutoPaymentMethodControl { get; set; }
}
public enum TaxType
{
IncludeTax = 1,
ExcludeTax = 2
}
public enum AccountingPeriod
{
AccountingPeriod = 0,
InterimAccountingPeriod = 1,
SpecialAccountingPeriod =2
}
public enum SignMethod
{
SmartCard = 1,
Hsm = 2
}
ELedgerPropertiesDto Class Descriptions
Properties:
Last updated