示例#1
0
        public async Task <IActionResult> AllAccounts(long customerId)
        {
            FinnOneCustomerAccount accounts = await customerAccountRepository.GetAllAccounts(customerId);

            return(Ok(new SingleDataResponse <FinnOneCustomerAccount> {
                Data = accounts
            }));
        }