private void LoadClaim(bad_payment_claims toView, string ClaimDate, string PatientName, string insuranceName, string ExpectedAmount, string ReceivedAmount)
        {
            _formClaim               = toView;
            Text                     = ClaimDate + ": " + PatientName + " thru " + insuranceName;
            lblExpectedAmount.Text   = "Amount Expected: " + ExpectedAmount;
            lblAmountReceived.Text   = "Amount Received: " + ReceivedAmount;
            txtNotes.Text            = toView.notes;
            chkIssueResolved.Checked = _formClaim.is_verified;

            if (_formClaim.verified_by != "")
            {
                lblVerifiedBy.Visible = true;
                lblVerifiedBy.Text    = "Verified by: " + _formClaim.verified_by;
            }
        }
 public frmBadPaymentClaimViewer(bad_payment_claims toView, string ClaimDate, string PatientName, string insuranceName, string ExpectedAmount, string ReceivedAmount)
 {
     InitializeComponent();
     LoadClaim(toView, ClaimDate, PatientName, insuranceName, ExpectedAmount, ReceivedAmount);
 }