public virtual Contact Get(int contactId) { contactId.CheckLessThanOrEqual(0, nameof(contactId)); _logger.LogInformation($"Get contact information for id: '{contactId}'"); return(_mapper.Map <Contact>((object)_contactRepo.Get(contactId))); }
public List <ContactDetails> Get() { return(_contactRepo.Get()); }
async Task <ArloContact> _getContact(string contactLink) { return(await GetEntity(contactLink, () => _contactRepo.Get(contactLink))); }
public IEnumerable <ContactData> Get() { return(_mockContactRepo.Get()); }