コード例 #1
0
 private void NewOrderWindow_Click(object sender, RoutedEventArgs e)
 {
     Business.Test.AccessionOrder ao         = Business.Persistence.DocumentGateway.Instance.GetAccessionOrderByMasterAccessionNo("18-19410");
     Business.Test.PanelSetOrder  pso        = ao.PanelSetOrderCollection.GetSurgical();
     Surgical.StainOrder          stainOrder = new Surgical.StainOrder(ao, pso);
     stainOrder.ShowDialog();
 }
コード例 #2
0
 private void ShowStainOrderForm()
 {
     YellowstonePathology.UI.Surgical.StainOrder window = new StainOrder(this.m_PathologistUI.AccessionOrder, this.m_PathologistUI.PanelSetOrder);
     window.ShowDialog();
 }