Ejemplo n.º 1
0
        public static PeriodReport GetPeriodReport(BudgetCategory category, DateTime startDate, DateTime endDate)
        {
            var instance = new BudgetCategoryReport(category, startDate, endDate);

            return(instance.PeriodReport);
        }
Ejemplo n.º 2
0
        public static PeriodMonthlyReport GetMonthByMonth(BudgetCategory category, DateTime startDate, DateTime endDate)
        {
            var instance = new BudgetCategoryReport(category, startDate, endDate);

            return(instance.MonthByMonth);
        }