public PatientLookupDialog(YellowstonePathology.Domain.ClientOrder.Model.ClientOrder clientOrder, YellowstonePathology.YpiConnect.Proxy.ClientOrderServiceProxy clientOrderServiceProxy)
        {
            this.m_ClientOrder = clientOrder;
            this.m_ClientOrderServiceProxy = clientOrderServiceProxy;

            InitializeComponent();

            this.DataContext = this;
        }
Exemplo n.º 2
0
        public PatientLookupDialog(YellowstonePathology.Domain.ClientOrder.Model.ClientOrder clientOrder, YellowstonePathology.YpiConnect.Proxy.ClientOrderServiceProxy clientOrderServiceProxy)
        {
            this.m_ClientOrder             = clientOrder;
            this.m_ClientOrderServiceProxy = clientOrderServiceProxy;

            InitializeComponent();

            this.DataContext = this;
        }
        public SpecialInstructionsLookupDialog(YellowstonePathology.Domain.ClientOrder.Model.ClientOrder clientOrder, YellowstonePathology.YpiConnect.Proxy.ClientOrderServiceProxy clientOrderServiceProxy)
        {
            this.m_ClientOrder             = clientOrder;
            this.m_ClientOrderServiceProxy = clientOrderServiceProxy;

            this.m_Instructions = new List <string>();
            this.m_Instructions.Add("Microbiology has been ordered");

            InitializeComponent();

            this.DataContext = this;
        }
        public ProviderLookupDialog(YellowstonePathology.Domain.ClientOrder.Model.ClientOrder clientOrder, YellowstonePathology.YpiConnect.Proxy.ClientOrderServiceProxy clientOrderServiceProxy)
        {
            this.m_ClientOrder             = clientOrder;
            this.m_ClientOrderServiceProxy = clientOrderServiceProxy;

            InitializeComponent();

            this.m_PhysicianCollection     = this.m_ClientOrderServiceProxy.GetPhysiciansByClientId(558);
            this.m_PhysicianCollectionView = new PhysicianCollectionView(this.m_PhysicianCollection);

            this.DataContext = this;
            this.Loaded     += new RoutedEventHandler(ProviderLookupDialog_Loaded);
        }
        public ProviderLookupDialog(YellowstonePathology.Domain.ClientOrder.Model.ClientOrder clientOrder, YellowstonePathology.YpiConnect.Proxy.ClientOrderServiceProxy clientOrderServiceProxy)
        {
            this.m_ClientOrder = clientOrder;
            this.m_ClientOrderServiceProxy = clientOrderServiceProxy;

            InitializeComponent();

            this.m_PhysicianCollection = this.m_ClientOrderServiceProxy.GetPhysiciansByClientId(558);
            this.m_PhysicianCollectionView = new PhysicianCollectionView(this.m_PhysicianCollection);

            this.DataContext = this;
            this.Loaded += new RoutedEventHandler(ProviderLookupDialog_Loaded);
        }
Exemplo n.º 6
0
 public OrderEntryUI()
 {
     this.m_ClientOrderServiceProxy = new YpiConnect.Proxy.ClientOrderServiceProxy();
     this.m_OrderBrowserListItemCollection = this.m_ClientOrderServiceProxy.GetRecentOrderBrowserListItemsByClientId(YellowstonePathology.YpiConnect.Contract.Identity.ApplicationIdentity.Instance.WebServiceAccount.PrimaryClientId);
 }
Exemplo n.º 7
0
 public OrderEntryUI()
 {
     this.m_ClientOrderServiceProxy        = new YpiConnect.Proxy.ClientOrderServiceProxy();
     this.m_OrderBrowserListItemCollection = this.m_ClientOrderServiceProxy.GetRecentOrderBrowserListItemsByClientId(YellowstonePathology.YpiConnect.Contract.Identity.ApplicationIdentity.Instance.WebServiceAccount.PrimaryClientId);
 }