public PatientResponse GetPatient(PatientRequest request)
    {
        PatientResponse response = new PatientResponse();

        // Set correlation Id
        response.CorrelationId = request.RequestId;

        try
        {

            // Get customer patient via Patient Facade.
            PatientFacade facade = new PatientFacade();
           response.Name = facade.GetPatient(request.PatientID);

        }
        catch // (Exception ex)
        {
            response.Acknowledge = AcknowledgeType.Failure;
            response.Message = "Request cannot be handled at this time.";
        }

        return response;
    }