示例#1
0
        public decimal GetTotalExpenseForLastMonth()
        {
            var totalExpense = _expRepo.GetExopenseForLastMonth().Sum(x => x.ExpAmount);

            return(totalExpense);
        }
 public List <TblExpenditure> GetExopenseForLastMonth() => _expRepo.GetExopenseForLastMonth();