コード例 #1
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;
        }
コード例 #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;
        }
コード例 #3
0
        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;
        }
コード例 #4
0
        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);
        }
コード例 #5
0
        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);
        }
コード例 #6
0
ファイル: OrderEntryUI.cs プロジェクト: WilliamCopland/YPILIS
 public OrderEntryUI()
 {
     this.m_ClientOrderServiceProxy = new YpiConnect.Proxy.ClientOrderServiceProxy();
     this.m_OrderBrowserListItemCollection = this.m_ClientOrderServiceProxy.GetRecentOrderBrowserListItemsByClientId(YellowstonePathology.YpiConnect.Contract.Identity.ApplicationIdentity.Instance.WebServiceAccount.PrimaryClientId);
 }
コード例 #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);
 }