BudgetAnalyser.Engine.Services.ReconciliationService.UnlockCurrentMonth C# (CSharp) Méthode

UnlockCurrentMonth() public méthode

public UnlockCurrentMonth ( LedgerBook ledgerBook ) : LedgerEntryLine
ledgerBook BudgetAnalyser.Engine.Ledger.LedgerBook
Résultat BudgetAnalyser.Engine.Ledger.LedgerEntryLine
        public LedgerEntryLine UnlockCurrentMonth(LedgerBook ledgerBook)
        {
            if (ledgerBook == null)
            {
                throw new ArgumentNullException(nameof(ledgerBook));
            }

            return ledgerBook.UnlockMostRecentLine();
        }