public ReviewClientOrderPath(YellowstonePathology.UI.Navigation.PageNavigator pageNavigator, ClientOrderReceivingHandler clientOrderReceivingHandler, object writer)
 {
     this.m_PageNavigator = pageNavigator;
     this.m_ClientOrderReceivingHandler = clientOrderReceivingHandler;
     this.m_Writer = writer;
     this.m_OrderCommentLogCollection = new Business.Domain.OrderCommentLogCollection();
 }
        public LabEventLogDialog(int specimenLogId)
        {
            m_OrderCommentLogCollection = YellowstonePathology.Business.Gateway.OrderCommentGateway.GetOrderCommentsForSpecimenLogId(specimenLogId);
            InitializeComponent();

            this.DataContext = this;
        }
Beispiel #3
0
        public LabEventLogDialog(int specimenLogId)
        {
            m_OrderCommentLogCollection = YellowstonePathology.Business.Gateway.OrderCommentGateway.GetOrderCommentsForSpecimenLogId(specimenLogId);
            InitializeComponent();

            this.DataContext = this;
        }
Beispiel #4
0
 public ReviewClientOrderPath(YellowstonePathology.UI.Navigation.PageNavigator pageNavigator, ClientOrderReceivingHandler clientOrderReceivingHandler, object writer)
 {
     this.m_PageNavigator = pageNavigator;
     this.m_ClientOrderReceivingHandler = clientOrderReceivingHandler;
     this.m_Writer = writer;
     this.m_OrderCommentLogCollection = new Business.Domain.OrderCommentLogCollection();
 }
        public EventListPage(YellowstonePathology.Business.Domain.OrderCommentLogCollection orderCommentLogCollection)
        {
            this.m_OrderCommentLogCollection = orderCommentLogCollection;

            InitializeComponent();

            this.DataContext = this;
        }
        public EventListPage(YellowstonePathology.Business.Domain.OrderCommentLogCollection orderCommentLogCollection)
        {
            this.m_OrderCommentLogCollection = orderCommentLogCollection;

            InitializeComponent();

            this.DataContext = this;
        }
Beispiel #7
0
        public OrderCommentPage(YellowstonePathology.Business.ClientOrder.Model.ClientOrder clientOrder)
        {
            this.m_OrderCommentLogCollection = YellowstonePathology.Business.Gateway.OrderCommentGateway.GetOrderCommentLogCollectionByClientOrderId(clientOrder.ClientOrderId);
            this.m_PageHeaderText            = "Events for " + clientOrder.PatientDisplayName;

            InitializeComponent();

            this.DataContext = this;
        }
        public OrderCommentPage(YellowstonePathology.Business.ClientOrder.Model.ClientOrder clientOrder)
        {
            this.m_OrderCommentLogCollection = YellowstonePathology.Business.Gateway.OrderCommentGateway.GetOrderCommentLogCollectionByClientOrderId(clientOrder.ClientOrderId);
            this.m_PageHeaderText = "Events for " + clientOrder.PatientDisplayName;

            InitializeComponent();

            this.DataContext = this;
        }
        public LabEventsControlTab(YellowstonePathology.Business.User.SystemIdentity systemIdentity)
        {
            this.m_SystemIdentity = systemIdentity;

            this.m_OrderCommentLog = new YellowstonePathology.Business.Domain.OrderCommentLogCollection();
            this.m_OrderComments = YellowstonePathology.Business.Gateway.AccessionOrderGateway.GetAllLabEvents();

            InitializeComponent();
            this.DataContext = this;
        }
Beispiel #10
0
        public LabEventsControlTab(YellowstonePathology.Business.User.SystemIdentity systemIdentity)
        {
            this.m_SystemIdentity = systemIdentity;

            this.m_OrderCommentLog = new YellowstonePathology.Business.Domain.OrderCommentLogCollection();
            this.m_OrderComments   = YellowstonePathology.Business.Gateway.AccessionOrderGateway.GetAllLabEvents();

            InitializeComponent();
            this.DataContext = this;
        }
Beispiel #11
0
 public void SetCurrentOrder(YellowstonePathology.Business.Interface.IOrder order)
 {
     if (order != null)
     {
         this.m_CurrentOrder  = order;
         this.OrderCommentLog = YellowstonePathology.Business.Gateway.OrderCommentGateway.GetOrderCommentsForSpecimenLogId(this.m_CurrentOrder.SpecimenLogId);
         if (this.m_OrderCommentLog == null)
         {
             this.m_OrderCommentLog = new Business.Domain.OrderCommentLogCollection();
         }
         this.NotifyPropertyChanged("LabEventLogHeader");
     }
 }
 private void FillOrderCommentLog()
 {
     this.m_OrderCommentLogCollection = YellowstonePathology.Business.Gateway.OrderCommentGateway.OrderCommentLogCollectionFromCaseNotesKeys(this.m_CaseNotesKeyCollection);
 }
Beispiel #13
0
 private void FillOrderCommentLog()
 {
     this.m_OrderCommentLogCollection = YellowstonePathology.Business.Gateway.OrderCommentGateway.OrderCommentLogCollectionFromCaseNotesKeys(this.m_CaseNotesKeyCollection);
 }
 public void SetCurrentOrder(YellowstonePathology.Business.Interface.IOrder order)
 {
     if (order != null)
     {
         this.m_CurrentOrder = order;
         this.OrderCommentLog = YellowstonePathology.Business.Gateway.OrderCommentGateway.GetOrderCommentsForSpecimenLogId(this.m_CurrentOrder.SpecimenLogId);
         if (this.m_OrderCommentLog == null)
         {
             this.m_OrderCommentLog = new Business.Domain.OrderCommentLogCollection();
         }
         this.NotifyPropertyChanged("LabEventLogHeader");
     }
 }