BudgetAnalyser.Wpf.UnitTest.Statement.StatementViewModelTest.GetPhoneTxnFromFullList C# (CSharp) Method

GetPhoneTxnFromFullList() private static method

private static GetPhoneTxnFromFullList ( StatementViewModel subject ) : BudgetAnalyser.Engine.Statement.Transaction
subject BudgetAnalyser.Statement.StatementViewModel
return BudgetAnalyser.Engine.Statement.Transaction
        private static Transaction GetPhoneTxnFromFullList(StatementViewModel subject)
        {
            Transaction transactionFromFullList = subject.Statement.Transactions
                .Single(t => t.BudgetBucket == StatementModelTestData.PhoneBucket && t.Date == new DateTime(2013, 07, 16));
            return transactionFromFullList;
        }