Exemplo n.º 1
0
        public IActionResult ListPhoneNumber()
        {
            var ContactList = phoneContactRepository.GetAll();

            return(View(ContactList));
        }
Exemplo n.º 2
0
        public IActionResult ListPhoneContact(Guid Contactid)
        {
            var Contactlist = phoneContactRepository.GetAll(Contactid);

            return(View(Contactlist));
        }