Rebase Develop

This commit is contained in:
2021-04-07 11:23:42 +02:00
parent 8a700d7162
commit 11a8d4b6af
67 changed files with 608 additions and 429 deletions
@@ -35,6 +35,7 @@ Public Class CustomersFrom '-- Ezek azok a cégek akik használják a programot
Private _NAV_xmlSignkey As String
Private _NAV_password As String
Private _NAV_exchangeKey As String
Private _NAV_NumberGenerator As NumberGenerator
Public Overrides Sub AfterConstruction()
MyBase.AfterConstruction()
@@ -169,6 +170,18 @@ Public Class CustomersFrom '-- Ezek azok a cégek akik használják a programot
SetPropertyValue("NAV_exchangeKey", _NAV_exchangeKey, value)
End Set
End Property
''' <summary>
''' NAV RequestID numbergeneratora
''' </summary>
''' <returns></returns>
Property NAV_NumberGenerator As NumberGenerator
Get
Return _NAV_NumberGenerator
End Get
Set(value As NumberGenerator)
SetPropertyValue(NameOf(NAV_NumberGenerator), _NAV_NumberGenerator, value)
End Set
End Property
ReadOnly Property DefaultCustomerBankAccounts As CustomerBankAccounts
Get
Dim _CustomerBankAccounts As CustomerBankAccounts = Nothing