private void TileBilling_MouseUp(object sender, MouseButtonEventArgs e)
 {
     if (this.ListViewAccessionOrders.SelectedItem != null)
     {
         YellowstonePathology.Business.Search.ReportSearchItem reportSearchItem = (YellowstonePathology.Business.Search.ReportSearchItem) this.ListViewAccessionOrders.SelectedItem;
         this.m_LoginUI.ReportSearchList.SetCurrentReportSearchItem(reportSearchItem.ReportNo);
         Billing.BillingPath billingPath = new Billing.BillingPath(this.m_LoginUI.ReportSearchList);
         billingPath.Start(this.m_LoginUI.AccessionOrder);
     }
 }
 private void TileBilling_MouseUp(object sender, MouseButtonEventArgs e)
 {
     if (this.ListViewAccessionOrders.SelectedItem != null)
     {
         YellowstonePathology.Business.Search.ReportSearchItem reportSearchItem = (YellowstonePathology.Business.Search.ReportSearchItem)this.ListViewAccessionOrders.SelectedItem;
         this.m_LoginUI.ReportSearchList.SetCurrentReportSearchItem(reportSearchItem.ReportNo);
         Billing.BillingPath billingPath = new Billing.BillingPath(this.m_LoginUI.ReportSearchList);
         billingPath.Start(this.m_LoginUI.AccessionOrder);
     }
 }
 private void TileBilling_MouseUp(object sender, MouseButtonEventArgs e)
 {
     if (this.ListViewAccessionOrders.SelectedItem != null)
     {
         if (this.BringPageToFore != null)
         {
             this.BringPageToFore(this, EventArgs.Empty);
         }
         else
         {
             YellowstonePathology.Business.Search.ReportSearchItem reportSearchItem = (YellowstonePathology.Business.Search.ReportSearchItem)this.ListViewAccessionOrders.SelectedItem;
             this.m_LoginUI.ReportSearchList.SetCurrentReportSearchItem(reportSearchItem.ReportNo);
             this.m_BillingPath = new Billing.BillingPath(this.m_LoginUI.ReportSearchList);
             this.m_BillingPath.Finish += BillingPath_Finish;
             this.BringPageToFore += this.m_BillingPath.BringPageToFore;
             this.m_BillingPath.Start(this.m_LoginUI.AccessionOrder);
             //this.m_BillingPathStarted = true;
         }
     }
 }