예제 #1
0
        public async Task <IncomeOrExpenseListDto[]> GetListAsync()
        {
            var result = await _incomeOrExpenseLogicService.GetIncomeOrExpensesAsync();

            return(result.ToArray());
        }
        public async Task <List <IncomeOrExpenseListDto> > Get()
        {
            var incomeOrExpenseTypes = await _incomeOrExpenseLogicService.GetIncomeOrExpensesAsync();

            return(incomeOrExpenseTypes);
        }