public OtherConditionsSelection()
        {
            this.m_OtherConditionCollection = YellowstonePathology.Business.Gateway.AccessionOrderGateway.GetOtherConditions();

            InitializeComponent();

            this.ListViewOtherConditions.DataContext = this.m_OtherConditionCollection;
        }
Exemple #2
0
        public CytologyUI(System.Windows.Controls.TabItem writer)
        {
            this.m_SystemIdentity = YellowstonePathology.Business.User.SystemIdentity.Instance;
            this.m_Writer = writer;

            this.m_UserIsPathologist = this.m_SystemIdentity.User.IsUserInRole(YellowstonePathology.Business.User.SystemUserRoleDescriptionEnum.Pathologist);
            this.m_UserIsCytotech = this.m_SystemIdentity.User.IsUserInRole(YellowstonePathology.Business.User.SystemUserRoleDescriptionEnum.CytologyScreener);

            this.m_Search = new YellowstonePathology.Business.Search.CytologyScreeningSearch();

            this.m_ScreeningImpressionCollection = YellowstonePathology.Business.Gateway.AccessionOrderGateway.GetScreeningImpressions();
            this.m_SpecimenAdequacyCollection = YellowstonePathology.Business.Gateway.AccessionOrderGateway.GetSpecimenAdequacy();

            this.m_OtherConditionCollection = YellowstonePathology.Business.Gateway.AccessionOrderGateway.GetOtherConditions();
            this.m_HpvRequisitionInstructions = new Business.Domain.HpvRequisitionInstructionCollection();
            this.m_DataLoadResult = new Business.Domain.DataLoadResult();
        }