Rock.Model.FinancialTransactionDetailService.GetGivingAnalyticsTransactionData C# (CSharp) Method

GetGivingAnalyticsTransactionData() public static method

Gets the giving analytics transaction data.
public static GetGivingAnalyticsTransactionData ( System.DateTime start, System.DateTime end, List accountIds, List currencyTypeIds, List sourceTypeIds ) : DataSet
start System.DateTime The start.
end System.DateTime The end.
accountIds List The account ids.
currencyTypeIds List The currency type ids.
sourceTypeIds List The source type ids.
return System.Data.DataSet
        public static DataSet GetGivingAnalyticsTransactionData( DateTime? start, DateTime? end, List<int> accountIds, List<int> currencyTypeIds, List<int> sourceTypeIds )
        {
            var parameters = GetGivingAnalyticsParameters( start, end, null, null, accountIds, currencyTypeIds, sourceTypeIds );
            return DbService.GetDataSet( "[dbo].[spFinance_GivingAnalyticsQuery_TransactionData]", System.Data.CommandType.StoredProcedure, parameters, 300 );
        }