public List <Phone> GetPhonesForPatient(Guid patientId)
        {
            List <Phone> phones = null;

            try
            {
                phones = _phoneService.GetPhonesByPatientId(patientId);
            }
            catch (Exception e)
            {
                Console.Write(e);
            }

            return(phones);
        }