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

GetGivingAnalyticsAccountTotals() public static method

Gets the giving analytics account totals.
public static GetGivingAnalyticsAccountTotals ( 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 GetGivingAnalyticsAccountTotals( 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( "spFinance_GivingAnalyticsQuery_AccountTotals", System.Data.CommandType.StoredProcedure, parameters, 300 );
        }