예제 #1
0
        public async Task <ActionResult <List <AccountType> > > GetAllAccount()
        {
            var accounts = await _accountTypeRepository.GetAllAccounts();

            return((List <AccountType>)accounts);
        }