コード例 #1
0
        public CaseDocumentsPage(YellowstonePathology.YpiConnect.Contract.RemoteFileList caseDocumentList)
        {
            this.m_CaseDocumentList = caseDocumentList;
            InitializeComponent();
            this.DataContext = this.m_CaseDocumentList;

            Loaded += new RoutedEventHandler(CaseDocumentsPage_Loaded);
        }
コード例 #2
0
        public FileUploadPage()
        {
            this.m_LocalFileList = new Contract.LocalFileList(false);
            this.m_LocalFileList.Load(YellowstonePathology.YpiConnect.Contract.Identity.ApplicationIdentity.Instance.WebServiceAccount);
            this.m_RemoteFileList = new Contract.RemoteFileList();
            this.GetRemoteFileList();

            InitializeComponent();

            MainWindow mainWindow = (MainWindow)System.Windows.Application.Current.MainWindow;
            this.HyperlinkSignOut.Click += new RoutedEventHandler(mainWindow.ButtonSignOut_Click);
            this.DataContext = this;

            Loaded += new RoutedEventHandler(FileUploadPage_Loaded);
        }
コード例 #3
0
        public FileUploadPage()
        {
            this.m_LocalFileList = new Contract.LocalFileList(false);
            this.m_LocalFileList.Load(YellowstonePathology.YpiConnect.Contract.Identity.ApplicationIdentity.Instance.WebServiceAccount);
            this.m_RemoteFileList = new Contract.RemoteFileList();
            this.GetRemoteFileList();

            InitializeComponent();

            MainWindow mainWindow = (MainWindow)System.Windows.Application.Current.MainWindow;

            this.HyperlinkSignOut.Click += new RoutedEventHandler(mainWindow.ButtonSignOut_Click);
            this.DataContext             = this;

            Loaded += new RoutedEventHandler(FileUploadPage_Loaded);
        }
コード例 #4
0
 public YellowstonePathology.YpiConnect.Contract.MethodResult GetRemoteFileList(ref YellowstonePathology.YpiConnect.Contract.RemoteFileList remoteFileList, YellowstonePathology.YpiConnect.Contract.Identity.WebServiceAccount webServiceAccount)
 {
     return(this.m_FileTransferServiceChannel.GetRemoteFileList(ref remoteFileList, webServiceAccount));
 }
コード例 #5
0
 public YellowstonePathology.YpiConnect.Contract.MethodResult GetRemoteFileList(ref YellowstonePathology.YpiConnect.Contract.RemoteFileList remoteFileList, YellowstonePathology.YpiConnect.Contract.Identity.WebServiceAccount webServiceAccount)
 {
     YellowstonePathology.YpiConnect.Contract.MethodResult methodResult = remoteFileList.Load(webServiceAccount.RemoteFileUploadDirectory);
     return(methodResult);
 }