public IActionResult ListPhoneNumber() { var ContactList = phoneContactRepository.GetAll(); return(View(ContactList)); }
public IActionResult ListPhoneContact(Guid Contactid) { var Contactlist = phoneContactRepository.GetAll(Contactid); return(View(Contactlist)); }