Example #1
0
 private void ItemsReceivedPage_AddSlideTrackingSpecimen(object sender, Business.BarcodeScanning.ContainerBarcode containerBarcode)
 {
     YellowstonePathology.UI.Login.Receiving.IFoundAContainerResult result = this.m_ClientOrderReceivingHandler.IFoundAContainer(containerBarcode.ID);
     result.ClientOrderDetail.Description            = "Slide Tracking Specimen";
     result.ClientOrderDetail.DescriptionToAccession = "Slide Tracking Specimen";
     result.ClientOrderDetail.CollectionDate         = DateTime.Now;
     result.ClientOrderDetail.Receive();
     YellowstonePathology.Business.Persistence.DocumentGateway.Instance.Save();
     this.StartReviewClientOrderPath();
 }
Example #2
0
 private void ReceiveContainerScan(string containerId)
 {
     YellowstonePathology.UI.Login.Receiving.IFoundAContainerResult result = this.m_ClientOrderReceivingHandler.IFoundAContainer(containerId);
     if (result.OkToReceive == true)
     {
         this.ShowClientOrderDetailsPage(result.ClientOrderDetail);
     }
     else
     {
         System.Windows.MessageBox.Show(result.Message);
     }
 }