AccessLog.TransactionEventArgs.TransactionEventArgs C# (CSharp) Méthode

TransactionEventArgs() public méthode

public TransactionEventArgs ( IEnumerable transactions ) : System
transactions IEnumerable
Résultat System
        public TransactionEventArgs(IEnumerable<Transaction> transactions)
        {
            this.Transactions = transactions.ToList();
        }
TransactionEventArgs