Beispiel #1
0
 private void ProviderDetailPage_Return_HandleCommand(UI.Navigation.PageNavigationReturnEventArgs e)
 {
     switch ((FinalizeAccessionCommandTypeEnum)e.Data)
     {
     case FinalizeAccessionCommandTypeEnum.ShowCaseNotes:
         YellowstonePathology.Business.Domain.CaseNotesKeyCollection caseNotesKeyCollection = new YellowstonePathology.Business.Domain.CaseNotesKeyCollection(this.m_AccessionOrder);
         CaseNotesPath caseNotesPath = new CaseNotesPath(this.m_PageNavigator, caseNotesKeyCollection);
         caseNotesPath.Return += new CaseNotesPath.ReturnEventHandler(CaseNotesPath_ProviderDetailPage_Return);
         caseNotesPath.Start();
         break;
     }
 }
 private void ProviderDetailPage_Return_HandleCommand(UI.Navigation.PageNavigationReturnEventArgs e)
 {
     switch ((FinalizeAccessionCommandTypeEnum)e.Data)
     {
         case FinalizeAccessionCommandTypeEnum.ShowCaseNotes:
             YellowstonePathology.Business.Domain.CaseNotesKeyCollection caseNotesKeyCollection = new YellowstonePathology.Business.Domain.CaseNotesKeyCollection(this.m_AccessionOrder);
             CaseNotesPath caseNotesPath = new CaseNotesPath(this.m_PageNavigator, caseNotesKeyCollection);
             caseNotesPath.Return += new CaseNotesPath.ReturnEventHandler(CaseNotesPath_ProviderDetailPage_Return);
             caseNotesPath.Start();
             break;
     }
 }