public ScreeningInfoViewModel GetCustomerMedicalHistory(long customerId)
 {
     return(_callQueueCustomerContactService.GetCustomerMedicalHistory(customerId));
 }
        public PartialViewResult GetScreeningInfo(long customerId)
        {
            var model = _callQueueCustomerContactService.GetCustomerMedicalHistory(customerId);

            return(PartialView(model));
        }