Example #1
0
        public AliquotOrder(string aliquotOrderId, string objectId, string specimenOrderId)
        {
            this.m_AliquotOrderId  = aliquotOrderId;
            this.m_ObjectId        = objectId;
            this.m_SpecimenOrderId = specimenOrderId;

            this.m_TestOrderCollection  = new YellowstonePathology.Business.Test.Model.TestOrderCollection_Base();
            this.m_SlideOrderCollection = new YellowstonePathology.Business.Slide.Model.SlideOrderCollection();
        }
Example #2
0
        public AliquotOrder(string aliquotOrderId, string objectId, string specimenOrderId)
        {
            this.m_AliquotOrderId = aliquotOrderId;
            this.m_ObjectId = objectId;
            this.m_SpecimenOrderId = specimenOrderId;

            this.m_TestOrderCollection = new YellowstonePathology.Business.Test.Model.TestOrderCollection_Base();
            this.m_SlideOrderCollection = new YellowstonePathology.Business.Slide.Model.SlideOrderCollection();
        }
 public TestOrderPanelSetOrderViewCollection(YellowstonePathology.Business.Test.Model.TestOrderCollection_Base testOrderCollection, YellowstonePathology.Business.Test.AccessionOrder accessionOrder)
 {
     foreach (YellowstonePathology.Business.Test.Model.TestOrder_Base testOrder in testOrderCollection)
     {
         YellowstonePathology.Business.Test.Model.TestOrder realTestOrder = accessionOrder.PanelSetOrderCollection.GetTestOrderByTestOrderId(testOrder.TestOrderId);
         YellowstonePathology.Business.Test.PanelSetOrder   panelSetOrder = accessionOrder.PanelSetOrderCollection.GetPanelSetOrderByTestOrderId(testOrder.TestOrderId);
         TestOrderPanelSetOrderView testOrderPanelSetOrderView            = new TestOrderPanelSetOrderView(panelSetOrder, realTestOrder);
         this.Add(testOrderPanelSetOrderView);
     }
 }
Example #4
0
        public AliquotOrder(string aliquotOrderId, string objectId, string specimenOrderId)
        {
            this.m_AliquotOrderId  = aliquotOrderId;
            this.m_ObjectId        = objectId;
            this.m_SpecimenOrderId = specimenOrderId;
            this.m_Decal           = false;
            this.Status            = YellowstonePathology.Business.TrackedItemStatusEnum.Created.ToString();

            YellowstonePathology.Business.Facility.Model.Facility facility = Business.Facility.Model.FacilityCollection.Instance.GetByFacilityId(YellowstonePathology.Business.User.UserPreferenceInstance.Instance.UserPreference.FacilityId);
            string location = YellowstonePathology.Business.User.UserPreferenceInstance.Instance.UserPreference.HostName;

            this.SetLocation(facility, location);

            this.m_TestOrderCollection  = new YellowstonePathology.Business.Test.Model.TestOrderCollection_Base();
            this.m_SlideOrderCollection = new YellowstonePathology.Business.Slide.Model.SlideOrderCollection();
        }
Example #5
0
 public AliquotOrder()
 {
     this.m_TestOrderCollection  = new YellowstonePathology.Business.Test.Model.TestOrderCollection_Base();
     this.m_SlideOrderCollection = new YellowstonePathology.Business.Slide.Model.SlideOrderCollection();
 }
 public virtual void Visit(YellowstonePathology.Business.Test.Model.TestOrderCollection_Base testOrderCollection)
 {
 }
Example #7
0
 public AliquotOrder()
 {
     this.m_TestOrderCollection = new YellowstonePathology.Business.Test.Model.TestOrderCollection_Base();
     this.m_SlideOrderCollection = new YellowstonePathology.Business.Slide.Model.SlideOrderCollection();
 }