예제 #1
0
 public async Task <List <PersonPhone> > FindAllAsync() => (await _personPhoneRepository.FindAllAsync()).ToList();
예제 #2
0
        public async Task <List <PersonPhone> > FindAllAsync()
        {
            var response = (await _personPhoneRepository.FindAllAsync()).ToList();

            return(response);
        }