BudgetAnalyser.Engine.Ledger.Data.Mapper_LedgerTransactionDto_LedgerTransaction.Mapper_LedgerTransactionDto_LedgerTransaction C# (CSharp) Method

Mapper_LedgerTransactionDto_LedgerTransaction() public method

public Mapper_LedgerTransactionDto_LedgerTransaction ( [ transactionFactory, [ accountTypeRepo ) : System
transactionFactory [
accountTypeRepo [
return System
        public Mapper_LedgerTransactionDto_LedgerTransaction([NotNull] ILedgerTransactionFactory transactionFactory, [NotNull] IAccountTypeRepository accountTypeRepo)
        {
            if (transactionFactory == null) throw new ArgumentNullException(nameof(transactionFactory));
            if (accountTypeRepo == null) throw new ArgumentNullException(nameof(accountTypeRepo));
            this.transactionFactory = transactionFactory;
            this.accountTypeRepo = accountTypeRepo;
        }